Created
June 14, 2015 03:42
-
-
Save wjn/25f3e10740a20b6cc553 to your computer and use it in GitHub Desktop.
Apache2 Optimization for 2GB Linode (/etc/apache2/apache2.conf)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure these settings are as follows: | |
KeepAlive Off | |
... | |
# for a 2 gb ram linode | |
<IfModule mpm_prefork_module> | |
StartServers 4 | |
MinSpareServers 12 | |
MaxSpareServers 24 | |
MaxClients 60 | |
MaxRequestsPerChild 6000 | |
</IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment