I’ve been trying to better tweak my Ubuntu instances Digital Ocean has a great article. There is also a great article on serverfault on configuring MaxRequestWorkers
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
sudo nano /etc/apache2/sites-available/000-default.conf <VirtualHost> <files xmlrpc.php> order allow,deny deny from all </files> </VirtualHost> <IfModule mpm_prefork_module>` StartServers 2 MinSpareServers 2 MaxSpareServers 5 MaxRequestWorkers XXX ServerLimit XXX MaxConnectionsPerChild 0 </IfModule> |