Categories

Archive

broken pipe am Mac verhindern

~/.ssh/config Host * ServerAliveInterval 150 ServerAliveCountMax 15 HostkeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa p.s. Hostkey ist Bonus für alte Server >> oder serverseitig -> sshd_config: TCPKeepAlive yes ClientAliveInterval 120 ClientAliveCountMax 15

x-frame-option multiple domains wp

BEST WAY (in wp-config.php): if (!strstr($_SERVER[‚REQUEST_URI‘], ‚XXX-content‚)){header(‚X-Frame-Options: SAMEORIGIN‘);} apache.conf / bzw. seite-available im directory part: (klappt nur bei realen FILES/DIRs nicht bei umleitungen!!! <IfModule mod_headers.c># Allow some urls, block all others; whitelisting<LocationMatch ^((?!(firstUrlAllowed|secondUrlAllowed)).)*$>Header always append X-Frame-Options SAMEORIGIN # Block any Read more ›

apache ordnerschutz per db-user/passwort

Der htaccess geschützte Bereich wird mit Usern aus der DB abgeglichen. a2enmod authn_dbd apt-get install libaprutil1-dbd-mysql service apache2 restart In DB: mysql -u root -p CREATE DATABASE htaccessuser; use htaccessuser GRANT ALL PRIVILEGES ON user.* TO ‚htaccessuser’@’localhost‘ IDENTIFIED BY ‚passwort‘; Read more ›