
This implements bare minimal functionality for the HTTPD role. It needs to be extended according to specific use-cases with follow-up patches Depends-On: https://review.opendev.org/c/openstack/openstack-ansible/+/938571 Change-Id: I7c0dd550c82cc11d2edba724b3f3030a41c0d354
13 lines
592 B
Django/Jinja
13 lines
592 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
<IfModule mpm_{{ httpd_mpm_backend }}_module>
|
|
ServerLimit {{ httpd_mpm_server_limit }}
|
|
StartServers {{ httpd_mpm_start_servers }}
|
|
MinSpareThreads {{ httpd_mpm_min_spare_threads }}
|
|
MaxSpareThreads {{ httpd_mpm_max_spare_threads }}
|
|
ThreadLimit {{ httpd_mpm_thread_limit }}
|
|
ThreadsPerChild {{ httpd_mpm_thread_child }}
|
|
MaxRequestWorkers {{ httpd_mpm_max_requests }}
|
|
MaxConnectionsPerChild {{ httpd_mpm_max_conn_child }}
|
|
</IfModule>
|