Merge pull request #140 from Nytoca/patch-1
Proper disabling of the default vhost
This commit is contained in:
commit
eaffddb0d0
@ -5,12 +5,12 @@
|
|||||||
include:
|
include:
|
||||||
- apache
|
- apache
|
||||||
|
|
||||||
apache_no-default-vhost:
|
a2dissite 000-default.conf:
|
||||||
file.absent:
|
cmd.run:
|
||||||
- name: {{ apache.vhostdir }}/000-default.conf
|
- unless: test ! -f /etc/apache2/sites-enabled/000-default.conf
|
||||||
- require:
|
- require:
|
||||||
- pkg: apache
|
- pkg: apache
|
||||||
- watch_in:
|
- watch_in:
|
||||||
- module: apache-reload
|
- module: apache-reload
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -34,8 +34,7 @@ include:
|
|||||||
{% if grains.os_family == 'Debian' %}
|
{% if grains.os_family == 'Debian' %}
|
||||||
{% if site.get('enabled', True) %}
|
{% if site.get('enabled', True) %}
|
||||||
a2ensite {{ id }}{{ apache.confext }}:
|
a2ensite {{ id }}{{ apache.confext }}:
|
||||||
cmd:
|
cmd.run:
|
||||||
- run
|
|
||||||
- unless: test -f /etc/apache2/sites-enabled/{{ id }}{{ apache.confext }}
|
- unless: test -f /etc/apache2/sites-enabled/{{ id }}{{ apache.confext }}
|
||||||
- require:
|
- require:
|
||||||
- file: /etc/apache2/sites-available/{{ id }}{{ apache.confext }}
|
- file: /etc/apache2/sites-available/{{ id }}{{ apache.confext }}
|
||||||
@ -43,8 +42,7 @@ a2ensite {{ id }}{{ apache.confext }}:
|
|||||||
- module: apache-reload
|
- module: apache-reload
|
||||||
{% else %}
|
{% else %}
|
||||||
a2dissite {{ id }}{{ apache.confext }}:
|
a2dissite {{ id }}{{ apache.confext }}:
|
||||||
cmd:
|
cmd.run:
|
||||||
- run
|
|
||||||
- onlyif: test -f /etc/apache2/sites-enabled/{{ id }}{{ apache.confext }}
|
- onlyif: test -f /etc/apache2/sites-enabled/{{ id }}{{ apache.confext }}
|
||||||
- require:
|
- require:
|
||||||
- file: /etc/apache2/sites-available/{{ id }}{{ apache.confext }}
|
- file: /etc/apache2/sites-available/{{ id }}{{ apache.confext }}
|
||||||
|
Loading…
Reference in New Issue
Block a user