diff --git a/hooks/horizon_contexts.py b/hooks/horizon_contexts.py index 39bc0d96..e792316f 100644 --- a/hooks/horizon_contexts.py +++ b/hooks/horizon_contexts.py @@ -317,7 +317,10 @@ class ApacheSSLContext(context.ApacheSSLContext): service_namespace = 'horizon' def __call__(self): - return super(ApacheSSLContext, self).__call__() + ctxt = super(ApacheSSLContext, self).__call__() + ctxt["ssl_configured"] = https() + + return ctxt class RouterSettingContext(OSContextGenerator):