Fix incorrect syntax in pillar example for SSLCertificateFile, SSLCertificateKeyFile
Fix check for SSLCertificateFile, SSLCertificateKeyFile variables in vhosts/standard.tmpl, now using dict.get()
This commit is contained in:
parent
3ed48e04c6
commit
f135e2e0d5
@ -48,10 +48,10 @@
|
|||||||
{% if site.get('DocumentRoot') != False %}DocumentRoot {{ vals.DocumentRoot }}{% endif %}
|
{% if site.get('DocumentRoot') != False %}DocumentRoot {{ vals.DocumentRoot }}{% endif %}
|
||||||
{% if site.get('VirtualDocumentRoot') %}VirtualDocumentRoot {{ vals.VirtualDocumentRoot }}{% endif %}
|
{% if site.get('VirtualDocumentRoot') %}VirtualDocumentRoot {{ vals.VirtualDocumentRoot }}{% endif %}
|
||||||
|
|
||||||
{% if site.SSLCertificateFile is defined %}
|
{% if site.get('SSLCertificateFile') != False %}
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLCertificateFile {{ site.SSLCertificateFile }}
|
SSLCertificateFile {{ site.SSLCertificateFile }}
|
||||||
{% if site.SSLCertificateKeyFile is defined %}
|
{% if site.get('SSLCertificateKeyFile') != False %}
|
||||||
SSLCertificateKeyFile {{ site.SSLCertificateKeyFile }}
|
SSLCertificateKeyFile {{ site.SSLCertificateKeyFile }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
@ -44,8 +44,8 @@ apache:
|
|||||||
|
|
||||||
DocumentRoot: /path/to/www/dir/example.com # E.g., /var/www/example.com
|
DocumentRoot: /path/to/www/dir/example.com # E.g., /var/www/example.com
|
||||||
|
|
||||||
SSLCertificateFile = /etc/ssl/mycert.pem # if ssl is desired
|
SSLCertificateFile: /etc/ssl/mycert.pem # if ssl is desired
|
||||||
SSLCertificateKeyFile = /etc/ssl/mycert.pem.key # if key for cert is needed or in an extra file
|
SSLCertificateKeyFile: /etc/ssl/mycert.pem.key # if key for cert is needed or in an extra file
|
||||||
|
|
||||||
Directory:
|
Directory:
|
||||||
# "default" is a special case; Adds ``/path/to/www/dir/example.com``
|
# "default" is a special case; Adds ``/path/to/www/dir/example.com``
|
||||||
|
Loading…
Reference in New Issue
Block a user