-
-
Save EvanK/b2e8e8cd56c0acd8375f to your computer and use it in GitHub Desktop.
Default calculated values for a virtual machine created with 1024MB memory (995MB as far as ansible is concerned)
This file contains hidden or 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
| ; Maximum amount of memory a script may consume (128MB) | |
| ; http://php.net/memory-limit | |
| memory_limit = 128M |
This file contains hidden or 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
| # prefork MPM | |
| # StartServers: number of server processes to start | |
| # MinSpareServers: minimum number of server processes which are kept spare | |
| # MaxSpareServers: maximum number of server processes which are kept spare | |
| # MaxClients: maximum number of server processes allowed to start | |
| # MaxRequestsPerChild: maximum number of requests a server process serves | |
| <IfModule mpm_prefork_module> | |
| StartServers 2 | |
| MinSpareServers 2 | |
| MaxSpareServers 3 | |
| MaxClients 7 | |
| ServerLimit 7 | |
| MaxRequestsPerChild 1000 | |
| </IfModule> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment