blob: 6cc82ee4415bd3a1a6bfefdf856dc0670387ebfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# kompetenzbolzen.stuff.apache
Example config
```
---
php_versions:
- php8.0
php_extensions:
- fpm
# Removing will NOT remove the module
apache_mods:
- ssl
- rewrite
apache_rproxies:
proxy-sso:
hostname: test.example.com
ssl: true
proxy: https://test-01.example.com:8443/
apache_custom_conf: |
ProxyPreserveHost on
SSLProxyVerify none
SSLProxyCheckPeerCN off
SSLProxyCheckPeerName off
apache_vhosts:
bookstack:
hostname: asdf.example.com
php_version: '8.0'
relative_root: 'webapp/public'
php_custom_conf: |
php_value[upload_max_filesize] = 128M
php_value[post_max_size] = 256M
php_value[memory_limit] = 512M
apache_nophp_vhosts:
homer:
hostname: dashboard.example.com
relative_root: ''
apache_custom_conf: ''
apache_ssl_cert: '/etc/ssl/certs/{{ ansible_facts.fqdn }}.pem'
apache_ssl_key: '/etc/ssl/private/{{ ansible_facts.fqdn }}.key'
```
|