Fix unnecessary comparison against boolean in vhosts/standard.tmpl
This commit is contained in:
parent
f135e2e0d5
commit
d4b1af0af4
@ -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.get('SSLCertificateFile') != False %}
|
{% if site.get('SSLCertificateFile') %}
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLCertificateFile {{ site.SSLCertificateFile }}
|
SSLCertificateFile {{ site.SSLCertificateFile }}
|
||||||
{% if site.get('SSLCertificateKeyFile') != False %}
|
{% if site.get('SSLCertificateKeyFile') %}
|
||||||
SSLCertificateKeyFile {{ site.SSLCertificateKeyFile }}
|
SSLCertificateKeyFile {{ site.SSLCertificateKeyFile }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user