Fix file permissions
cd /home/website/files/
#this line below will change all directories to 755
# you might want 700 also depending
find . -type d -exec chmod 0755 {} \;
#this changes all files to 644
find . -type f -exec chmod 0644 {} \; cd /home/website/files/
#this line below will change all directories to 755
# you might want 700 also depending
find . -type d -exec chmod 0755 {} \;
#this changes all files to 644
find . -type f -exec chmod 0644 {} \; # apache SSLProtocol all -SSLv2 -SSLv3 # RC4 is broken and is not specified in the allowed ciphers, 3DES is used instead for legacy connections, st...
http://blog.haproxy.com/2012/04/13/enhanced-ssl-load-balancing-with-server-name-indication-sni-tls-extension/ Adding SSL Cert Create SSL B...
First, you should ensure that your username is included in www-data group. If not, you can add your username as www-data group sudo adduser user w...
https://github.com/haad/proxychains You can clone with HTTPS or Subversion. proxychains - a tool that forces any TCP connection made by ...