improve https rewriting

This commit is contained in:
Thomas Pointhuber 2014-09-14 14:17:12 +02:00
parent 6e6dbc1bb4
commit 0616d26feb
2 changed files with 7 additions and 2 deletions

View file

@ -24,5 +24,7 @@ else:
with open(settings_path) as settings_yaml:
settings = load(settings_yaml)
# loade https rules
load_https_rules(https_rewrite_path)
# load https rules only if https rewrite is enabled
if settings.get('server', {}).get('https_rewrite'):
# loade https rules
load_https_rules(https_rewrite_path)