add subdomains to allowed hosts
This commit is contained in:
parent
d90f0f3218
commit
bb2f39e785
|
@ -2,8 +2,10 @@ from .base import *
|
||||||
|
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
|
|
||||||
ALLOWED_HOSTS = ['fediverse.space']
|
ALLOWED_HOSTS = ['fediverse.space', 'www.fediverse.space', 'staging.fediverse.space']
|
||||||
|
|
||||||
CORS_ORIGIN_WHITELIST = [
|
CORS_ORIGIN_WHITELIST = [
|
||||||
'fediverse.space',
|
'fediverse.space',
|
||||||
|
'www.fediverse.space',
|
||||||
|
'staging.fediverse.space'
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue