2021-01-18 05:03:46 -06:00
|
|
|
# vim:ft=ansible:
|
|
|
|
apache_remove_default_vhost: yes
|
|
|
|
apache_packages_state: latest
|
|
|
|
apache_mods_enabled:
|
|
|
|
- headers.load
|
|
|
|
- http2.load
|
|
|
|
- mpm_worker.load
|
|
|
|
- proxy.load
|
|
|
|
- proxy_fcgi.load
|
|
|
|
- proxy_http.load
|
|
|
|
- rewrite.load
|
|
|
|
- ssl.load
|
|
|
|
apache_mods_disabled:
|
2021-01-23 18:45:20 -06:00
|
|
|
- mpm_event.load
|
2021-01-18 05:03:46 -06:00
|
|
|
- mpm_prefork.load
|
|
|
|
- php7.4.load
|
|
|
|
apache_global_vhost_settings: |
|
|
|
|
DirectoryIndex index.php index.html
|
|
|
|
Protocols h2 http/1.1
|
|
|
|
<FilesMatch \.php$>
|
|
|
|
SetHandler "proxy:fcgi://127.0.0.1:9000"
|
|
|
|
</FilesMatch>
|