26 lines
589 B
YAML
26 lines
589 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
|
|
- socache_shmcb.load
|
|
- ssl.load
|
|
apache_mods_disabled:
|
|
- mpm_event.load
|
|
- mpm_prefork.load
|
|
- php7.4.load
|
|
apache_global_vhost_settings: |
|
|
DirectoryIndex index.php index.html
|
|
Protocols h2 http/1.1
|
|
SSLSessionCache shmcb:/run/apache2/socache
|
|
SSLSessionCacheTimeout 300
|
|
<FilesMatch \.php$>
|
|
SetHandler "proxy:fcgi://127.0.0.1:9000"
|
|
</FilesMatch>
|