mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-03 00:30:18 +01:00
Add global config variable
This commit is contained in:
parent
ac77f7835e
commit
53990ee997
3 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
|||
---
|
||||
apache_enablerepo: ""
|
||||
|
||||
apache_global_settings: |
|
||||
DirectoryIndex index.php index.html
|
||||
|
||||
apache_listen_port: 80
|
||||
apache_listen_port_ssl: 443
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
|
||||
DirectoryIndex index.php index.html
|
||||
{{ apache_global_settings }}
|
||||
|
||||
{# Set up VirtualHosts #}
|
||||
{% for vhost in apache_vhosts %}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
|
||||
DirectoryIndex index.php index.html
|
||||
{{ apache_global_settings }}
|
||||
|
||||
{# Set up VirtualHosts #}
|
||||
{% for vhost in apache_vhosts %}
|
||||
|
|
Loading…
Reference in a new issue