index.community/backend/api/backend/settings/production.py

12 lines
231 B
Python

from .base import *
DEBUG = False
ALLOWED_HOSTS = ['fediverse.space', 'www.fediverse.space', 'staging.fediverse.space']
CORS_ORIGIN_WHITELIST = [
'fediverse.space',
'www.fediverse.space',
'staging.fediverse.space'
]