ansible-role-apache/defaults/main.yml
2015-01-08 17:29:36 +00:00

32 lines
810 B
YAML

---
apache_enablerepo: ""
apache_listen_port: 80
apache_listen_port_ssl: 443
apache_create_vhosts: true
apache_vhosts:
# Additional properties: 'serveradmin, extra_parameters'.
- {servername: "local.dev", documentroot: "/var/www/html"}
apache_vhosts_ssl: []
# Additional properties: 'serveradmin, extra_parameters'.
# - {
# servername: "local.dev",
# documentroot: "/var/www/html",
# certificate_file: "/path/to/certificate.crt",
# certificate_key_file: "/path/to/certificate.key",
# # Optional.
# certificate_chain_file: "/path/to/certificate_chain.crt"
# }
apache_ssl_protocol: "All -SSLv2 -SSLv3"
apache_ssl_cipher_suite: "AES256+EECDH:AES256+EDH"
apache_vhosts_version: "2.2"
apache_vhosts_filename: "vhosts.conf"
apache_mods_enabled:
- rewrite.load
- ssl.load