From bc1b618c05a344bc0622870cce6aeeb7dbe9c95f Mon Sep 17 00:00:00 2001 From: Salt Date: Tue, 11 Feb 2020 04:25:42 -0600 Subject: [PATCH] More instances of bad variable naming --- roles/redirect/templates/apache2-redirect.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roles/redirect/templates/apache2-redirect.conf b/roles/redirect/templates/apache2-redirect.conf index 79564ce..f732d7e 100644 --- a/roles/redirect/templates/apache2-redirect.conf +++ b/roles/redirect/templates/apache2-redirect.conf @@ -1,4 +1,4 @@ -# Configuration for {{ redirect_url }} +# Configuration for {{ redirect_from }} # Redirect to {{ redirect_to }} # vim:ft=apache: @@ -12,9 +12,9 @@ SSLStrictSNIVHostCheck off SSLEngine on - SSLCertificateFile /etc/pki/cert/crt/{{ redirect_url }}.crt - SSLCertificateKeyFile /etc/pki/cert/private/{{ redirect_url }}.key - SSLCertificateChainFile /etc/pki/cert/crt/{{ redirect_url}}-fullchain.crt - ServerName {{ redirect_url }} + SSLCertificateFile /etc/pki/cert/crt/{{ redirect_from }}.crt + SSLCertificateKeyFile /etc/pki/cert/private/{{ redirect_from }}.key + SSLCertificateChainFile /etc/pki/cert/crt/{{ redirect_from}}-fullchain.crt + ServerName {{ redirect_from }} Redirect permanent / https://{{ redirect_to }}