2014-05-05 16:58:15 +02:00
|
|
|
---
|
|
|
|
apache_enablerepo: ""
|
|
|
|
|
2016-04-20 11:46:12 +02:00
|
|
|
apache_listen_ip: "*"
|
2014-05-05 16:58:15 +02:00
|
|
|
apache_listen_port: 80
|
2014-11-05 17:07:20 +01:00
|
|
|
apache_listen_port_ssl: 443
|
2014-09-10 11:22:40 +02:00
|
|
|
|
2014-05-05 16:58:15 +02:00
|
|
|
apache_create_vhosts: true
|
2015-01-10 06:30:07 +01:00
|
|
|
apache_vhosts_filename: "vhosts.conf"
|
2016-09-02 13:37:41 +02:00
|
|
|
apache_vhosts_template: "vhosts.conf.j2"
|
2014-05-05 16:58:15 +02:00
|
|
|
|
2015-07-23 19:04:31 +02:00
|
|
|
# On Debian/Ubuntu, a default virtualhost is included in Apache's configuration.
|
|
|
|
# Set this to `true` to remove that default.
|
|
|
|
apache_remove_default_vhost: false
|
|
|
|
|
2015-12-10 21:39:55 +01:00
|
|
|
apache_global_vhost_settings: |
|
2015-12-08 21:23:54 +01:00
|
|
|
DirectoryIndex index.php index.html
|
|
|
|
|
2014-05-05 16:58:15 +02:00
|
|
|
apache_vhosts:
|
2016-04-25 16:00:03 +02:00
|
|
|
# Additional properties:
|
|
|
|
# 'serveradmin, serveralias, allow_override, options, extra_parameters'.
|
2015-09-03 23:16:04 +02:00
|
|
|
- servername: "local.dev"
|
|
|
|
documentroot: "/var/www/html"
|
2014-10-22 20:41:14 +02:00
|
|
|
|
2016-04-25 16:00:03 +02:00
|
|
|
apache_allow_override: "All"
|
|
|
|
apache_options: "-Indexes +FollowSymLinks"
|
|
|
|
|
2014-11-05 17:07:20 +01:00
|
|
|
apache_vhosts_ssl: []
|
2016-04-25 16:00:03 +02:00
|
|
|
# Additional properties:
|
|
|
|
# 'serveradmin, serveralias, allow_override, options, extra_parameters'.
|
2015-09-03 23:16:04 +02:00
|
|
|
# - servername: "local.dev",
|
2014-11-05 17:07:20 +01:00
|
|
|
# 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"
|
|
|
|
|
2016-01-16 16:55:07 +01:00
|
|
|
apache_ignore_missing_ssl_certificate: true
|
|
|
|
|
2014-11-05 17:07:20 +01:00
|
|
|
apache_ssl_protocol: "All -SSLv2 -SSLv3"
|
|
|
|
apache_ssl_cipher_suite: "AES256+EECDH:AES256+EDH"
|
|
|
|
|
2015-05-31 23:01:27 +02:00
|
|
|
# Only used on Debian/Ubuntu.
|
2014-11-05 17:07:20 +01:00
|
|
|
apache_mods_enabled:
|
|
|
|
- rewrite.load
|
|
|
|
- ssl.load
|
2015-05-31 23:01:27 +02:00
|
|
|
apache_mods_disabled: []
|
2015-09-24 11:16:52 +02:00
|
|
|
|
|
|
|
# Set initial apache state. Recommended values: `started` or `stopped`
|
|
|
|
apache_state: started
|
2016-06-22 14:01:49 +02:00
|
|
|
|
|
|
|
# Set apache state when configuration changes are made. Recommended values: `restarted` or `reloaded`
|
|
|
|
apache_restart_state: restarted
|