diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2021-09-02 01:02:31 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2021-09-02 01:02:31 +0200 |
commit | 2e3a53d879ef17f2e4afcce9e6b7f121ab25c571 (patch) | |
tree | 6f75bcb2af9dcc5c975ffa0d3438023ad8abf8ca /roles/apache/defaults | |
parent | a024ad57e94976f7541bdd352e2d0a364c2aa5fb (diff) | |
download | ansible_collection-2e3a53d879ef17f2e4afcce9e6b7f121ab25c571.tar.gz |
add apache role
Diffstat (limited to 'roles/apache/defaults')
-rw-r--r-- | roles/apache/defaults/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/apache/defaults/main.yml b/roles/apache/defaults/main.yml new file mode 100644 index 0000000..9a5bd51 --- /dev/null +++ b/roles/apache/defaults/main.yml @@ -0,0 +1,17 @@ +--- +php_versions: [] + +php_extensions: [] + +# Removing will NOT remove the module +apache_mods: [] + +apache_rproxies: {} + +# Hosts WITH PHP, run as seperate user +apache_vhosts: {} + +apache_nophp_vhosts: {} + +apache_ssl_cert: '/etc/ssl/certs/ssl-cert-snakeoil.pem' +apache_ssl_key: '/etc/ssl/private/ssl-cert-snakeoil.key' |