I would like to ask for help in forcing https in Mezzanine. If I use https, it works, however http also works and it doesn't redirect to https.
From the documentation I figured out that the following settings should be used in settings.py:
SSL_ENABLED = True
SSL_FORCED_PREFIXES_ONLY = False
SSL_FORCE_HOST = 'www.mysite.com'
and from a forum that
"mezzanine.core.middleware.SSLRedirectMiddleware",
should be in the MIDDLEWARE_CLASSES.
However this doesn't work, http is not redirected to https.
Thank you for your help.