22 lines
473 B
YAML
22 lines
473 B
YAML
|
# 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:
|
||
|
- 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>
|