Skip to content

Commit 5f1d96f

Browse files
Merge pull request #3 from wcm-io-devops/feature/remove-default-vhosts
Optimize default vhost removal. Add support for removing default ssl vhost from ssl.conf on CentOS
2 parents d57329a + e61a4d4 commit 5f1d96f

File tree

6 files changed

+40
-5
lines changed

6 files changed

+40
-5
lines changed

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ The wcm.io fork adds the following features on top of the original functionality
1414
* `apache_listen_port` and `apache_listen_port_ssl` support on Debian, RedHat/Amazon Linux and SUSE
1515
* `apache_mods_enabled` support on Debian, RedHat/Amazon Linux and SUSE.
1616

17+
* Issue https://github.com/geerlingguy/ansible-role-apache/issues/81
18+
* Issue https://github.com/geerlingguy/ansible-role-apache/issues/21
19+
1720
**Namespace**
1821

1922
This role is published within the `wcm-io-devops` namespace.
@@ -53,7 +56,11 @@ If set to true, a vhosts file, managed by this role's variables (see below), wil
5356

5457
apache_remove_default_vhost: false
5558

56-
On Debian/Ubuntu, a default virtualhost is included in Apache's configuration. Set this to `true` to remove that default virtualhost configuration file.
59+
On Debian/Ubuntu RedHat/CentOS, default virtualhosts are included in Apache's configuration. Set this to `true` to remove that default virtualhost configuration file.
60+
61+
apache_remove_default_vhost_ssl: false
62+
63+
On RedHat/CentOS based systems a default virtualhost is present in the ssl.conf. Set this to `true` to remove that virtualhost from ssl.conf configuration file.
5764

5865
apache_global_vhost_settings: |
5966
DirectoryIndex index.php index.html

defaults/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ apache_vhosts_template: "vhosts.conf.j2"
1414
# Set this to `true` to remove that default.
1515
apache_remove_default_vhost: false
1616

17+
# Delete default SSL virtualhost files includes in Apache's configuration
18+
# This currently only has an effect on RedHat based OS, where the default virtualhost is removed from ssl.conf
19+
apache_remove_default_vhost_ssl: false
20+
1721
apache_global_vhost_settings: |
1822
DirectoryIndex index.php index.html
1923

tasks/configure-Debian.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757

5858
- name: Remove default vhost in sites-enabled.
5959
file:
60-
path: "{{ apache_conf_path }}/sites-enabled/{{ apache_default_vhost_filename }}"
60+
path: "{{ apache_conf_path }}/sites-enabled/{{ item }}"
6161
state: absent
6262
notify: restart apache
63+
with_items: "{{ apache_default_vhost_filenames }}"
6364
when: apache_remove_default_vhost

tasks/configure-RedHat.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
- name: Configure Apache ssl.conf (replace).
3232
replace:
33-
dest: "{{ apache_server_root }}/conf.d/ssl.conf"
33+
dest: "{{ apache_conf_path }}/ssl.conf"
3434
regexp: "{{ item.regexp }}"
3535
replace: "{{ item.replace }}"
3636
with_items: "{{ apache_ports_configuration_items }}"
@@ -53,3 +53,18 @@
5353
mode: 0644
5454
notify: restart apache
5555
when: apache_create_vhosts
56+
57+
- name: Remove default vhost configurations
58+
file:
59+
path: "{{ apache_conf_path }}/{{ item }}"
60+
state: absent
61+
notify: restart apache
62+
with_items: "{{ apache_default_vhost_filenames }}"
63+
when: apache_remove_default_vhost
64+
65+
- name: Remove default ssl vhost configurations
66+
replace:
67+
dest: "{{ apache_conf_path }}/ssl.conf"
68+
regexp: "##\\n##\\s*SSL Virtual Host Context(.*\\n)*</VirtualHost>"
69+
when: apache_remove_default_vhost_ssl
70+
notify: restart apache

vars/apache-22.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
---
22
apache_vhosts_version: "2.2"
3-
apache_default_vhost_filename: 000-default
3+
apache_default_vhost_filenames:
4+
- 000-default
5+
- welcome.conf
6+
- userdir.conf
7+
- autoindex.conf
48

59
apache_ports_configuration_items:
610
# Debian, Ubuntu and RedHat

vars/apache-24.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
---
22
apache_vhosts_version: "2.4"
3-
apache_default_vhost_filename: 000-default.conf
3+
apache_default_vhost_filenames:
4+
- 000-default.conf
5+
- welcome.conf
6+
- userdir.conf
7+
- autoindex.conf
48

59
apache_ports_configuration_items:
610
# Debian/Ubuntu and RedHat/CentOS/Amazon Linux Regex for http

0 commit comments

Comments
 (0)