From d0cee5b994f6c271c595e523811975911b4d2593 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Sun, 7 Dec 2014 23:55:21 +0000 Subject: [PATCH] s/end/endif/g --- roles/httpd/website/templates/website.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/httpd/website/templates/website.conf b/roles/httpd/website/templates/website.conf index 1d2a514bcf..d7464913f3 100644 --- a/roles/httpd/website/templates/website.conf +++ b/roles/httpd/website/templates/website.conf @@ -8,7 +8,7 @@ {% if gzip %} SetOutputFilter DEFLATE -{% end %} +{% endif %} {% if sslonly %} RewriteEngine On @@ -16,7 +16,7 @@ RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [NE] {% else %} Include "conf.d/{{ name }}/*.conf" -{% end %} +{% endif %} {% if ssl %} @@ -24,19 +24,19 @@ ServerName {{ name }} {% if server_aliases %} ServerAlias {{ server_aliases.join(" ") }} -{% end %} +{% endif %} ServerAdmin {{ server_admin }} {% if gzip %} SetOutputFilter DEFLATE -{% end %} +{% endif %} SSLEngine on SSLCertificateFile /etc/pki/tls/certs/{{ cert_name }}.cert SSLCertificateKeyFile /etc/pki/tls/private/{{ cert_name }}.key {% if SSLCertificateChainFile %} SSLCertificateChainFile /etc/pki/tls/certs/{{ SSLCertificateChainFile }} -{% end %} +{% endif %} SSLHonorCipherOrder On # https://fedorahosted.org/fedora-infrastructure/ticket/4101#comment:14 @@ -47,4 +47,4 @@ Include "conf.d/{{ name }}/*.conf" -{% end %} +{% endif %}