From 715a002f564ecaa757633ec66b191d84a045eceb Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Wed, 8 Feb 2023 18:42:49 -0500 Subject: document apache roles --- roles/apache_vhost/templates/etc/httpd/conf.d/vhost.conf.j2 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'roles/apache_vhost/templates/etc/httpd/conf.d') diff --git a/roles/apache_vhost/templates/etc/httpd/conf.d/vhost.conf.j2 b/roles/apache_vhost/templates/etc/httpd/conf.d/vhost.conf.j2 index a925372..12a682e 100644 --- a/roles/apache_vhost/templates/etc/httpd/conf.d/vhost.conf.j2 +++ b/roles/apache_vhost/templates/etc/httpd/conf.d/vhost.conf.j2 @@ -1,5 +1,5 @@ {% if apache_use_ssl and apache_redirect_to_https %} - + ServerName {{ apache_server_name }} {% for alias in apache_server_aliases %} ServerAlias {{ alias }} @@ -18,7 +18,7 @@ {% else %} {% if apache_canonical_hostname is defined and (apache_server_aliases | length > 0) %} - + {% for alias in ([apache_server_name] + apache_server_aliases) | reject('equalto', apache_canonical_hostname) | list %} {% if loop.first %} ServerName {{ alias }} @@ -36,7 +36,7 @@ {% endif %} - + {% if apache_document_root is defined %} DocumentRoot "{{ apache_document_root }}" {% endif %} @@ -73,7 +73,7 @@ {% if apache_use_ssl %} {% if apache_canonical_hostname is defined and (apache_server_aliases | length > 0) %} - + {% for alias in ([apache_server_name] + apache_server_aliases) | reject('equalto', apache_canonical_hostname) | list %} {% if loop.first %} ServerName {{ alias }} @@ -96,7 +96,7 @@ {% endif %} - + {% if apache_document_root is defined %} DocumentRoot "{{ apache_document_root }}" {% endif %} -- cgit