mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-18 07:20:19 +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_enablerepo: ""
|
||||||
|
|
||||||
|
apache_global_settings: |
|
||||||
|
DirectoryIndex index.php index.html
|
||||||
|
|
||||||
apache_listen_port: 80
|
apache_listen_port: 80
|
||||||
apache_listen_port_ssl: 443
|
apache_listen_port_ssl: 443
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
|
{{ apache_global_settings }}
|
||||||
DirectoryIndex index.php index.html
|
|
||||||
|
|
||||||
{# Set up VirtualHosts #}
|
{# Set up VirtualHosts #}
|
||||||
{% for vhost in apache_vhosts %}
|
{% for vhost in apache_vhosts %}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
|
{{ apache_global_settings }}
|
||||||
DirectoryIndex index.php index.html
|
|
||||||
|
|
||||||
{# Set up VirtualHosts #}
|
{# Set up VirtualHosts #}
|
||||||
{% for vhost in apache_vhosts %}
|
{% for vhost in apache_vhosts %}
|
||||||
|
|
Loading…
Reference in a new issue