1234567891011121314151617181920212223242526272829303132333435 |
- ServerName {{ ansible_fqdn }}
- ServerAdmin admin@{{ ansible_fqdn }}
- <Directory "/var/www/html">
- Options Indexes FollowSymLinks
- AllowOverride All
- Require all granted
- </Directory>
- <IfModule http2_module>
- Protocols h2 h2c http/1.1
- H2Direct on
- H2StreamMaxMemSize 5120000000
- </IfModule>
- <IfModule prefork.c>
- StartServers 2
- {% if web_status is sameas true %}
- MinSpareThreads 25
- MaxSpareThreads 75
- ThreadLimit 64
- ThreadsPerChild 25
- {% endif %}
- MaxRequestWorkers 150
- MaxConnectionsPerChild 1000
- </IfModule>
- <IfModule mpm_event_module>
- StartServers 2
- MinSpareThreads 25
- MaxSpareThreads 75
- ThreadLimit 64
- ThreadsPerChild 25
- MaxRequestWorkers 150
- MaxConnectionsPerChild 1000
- </IfModule>
- ServerTokens Prod
- ServerSignature Off
- TraceEnable Off
|