File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2121
2222
2323# Quick-start development settings - unsuitable for production
24- # See https://docs.djangoproject.com/en/5.1 /howto/deployment/checklist/
24+ # See https://docs.djangoproject.com/en/stable /howto/deployment/checklist/
2525
2626# SECURITY WARNING: keep the secret key used in production secret!
2727SECRET_KEY = os .environ .get ('SECRET_KEY' , 'changeme' )
2828
2929# SECURITY WARNING: don't run with debug turned on in production!
3030DEBUG = os .environ .get ('DEBUG' , 'True' ) == 'True'
3131
32+ # SECURITY WARNING: provide a list of representing the host/domain names that
33+ # this Django site can serve. This is a security measure to prevent HTTP Host
34+ # header attacks.
35+ # See https://docs.djangoproject.com/en/stable/ref/settings/#allowed-hosts
3236ALLOWED_HOSTS = ["*" ]
3337CSRF_TRUSTED_ORIGINS = ["https://*.aldryn.io" ]
3438
You can’t perform that action at this time.
0 commit comments