Documentation

Correct Apache Access to Folders

Allows correct read/write  access to folders to which Apache should have access find . -type d -exec chmod 755 {} + find . -type f -exec chmod 644 {} + chown -Rf www-data:www-data *  

READ MORE

sysctl.conf modification for high loaded Linux Server

To handle High loaded Linux server requires a lot changes in Linux configuration One of theme is to edit  /etc/sysctl.conf file nano /etc/sysctl.conf net.ipv4.tcp_keepalive_time = 30 net.ipv4.tcp_keepalive_intvl = 10 net.ipv4.icmp_echo_ignore_all=1 net.ipv4.tcp_fin_timeout = 20 net.ipv4.tcp_synack_retries = 1…

READ MORE