Skip to content
Snippets Groups Projects
Commit af434769 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

I assume BASE_URL should be https.

parent e11d4d09
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ if 'ALLOWED_HOSTS' in env: ...@@ -57,7 +57,7 @@ if 'ALLOWED_HOSTS' in env:
ALLOWED_HOSTS = env['ALLOWED_HOSTS'].split(',') ALLOWED_HOSTS = env['ALLOWED_HOSTS'].split(',')
if 'PRIMARY_HOST' in env: if 'PRIMARY_HOST' in env:
BASE_URL = 'http://%s/' % env['PRIMARY_HOST'] BASE_URL = 'https://%s/' % env['PRIMARY_HOST']
if 'SERVER_EMAIL' in env: if 'SERVER_EMAIL' in env:
SERVER_EMAIL = env['SERVER_EMAIL'] SERVER_EMAIL = env['SERVER_EMAIL']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment