|
-
-
- {%- set mpm_param = salt['pillar.get']('apache:mpm:params', {}) %}
-
-
-
-
-
-
-
-
- <IfModule mpm_event_module>
- StartServers {{ mpm_param['start_servers'] | d('2') }}
- MaxRequestWorkers {{ mpm_param['max_request_workers'] | d('150') }}
- MinSpareThreads {{ mpm_param['min_spare_threads'] | d('25') }}
- MaxSpareThreads {{ mpm_param['max_spare_threads'] | d('75') }}
- ThreadLimit {{ mpm_param['thread_limit'] | d('64') }}
- ThreadsPerChild {{ mpm_param['threads_per_child'] | d('25') }}
- MaxConnectionsPerChild {{ mpm_param['max_connections_per_child'] | d('0') }}
- </IfModule>
-
|