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

11 lines
242 B
Python
Raw Normal View History

2018-08-26 22:31:53 +00:00
from .base import *
2019-02-20 16:18:12 +00:00
DEBUG = False
2019-02-22 15:37:10 +00:00
ALLOWED_HOSTS = ['backend.fediverse.space']
2018-08-27 21:31:27 +00:00
CORS_ORIGIN_REGEX_WHITELIST = [
r'^(https?:\/\/)?(\w+\.)?(.*)?fediverse-space\.netlify\.com\/?$',
r'^(https?:\/\/)?(\w+\.)?(.*)?fediverse\.space\/?$',
2018-08-27 21:31:27 +00:00
]