Add some secure settings
This commit is contained in:
parent
02f64aef12
commit
d53d4f9823
1 changed files with 4 additions and 0 deletions
|
@ -53,6 +53,10 @@ HOSTS = os.getenv("HOSTS")
|
||||||
if HOSTS:
|
if HOSTS:
|
||||||
ALLOWED_HOSTS.extend(HOSTS.split(";"))
|
ALLOWED_HOSTS.extend(HOSTS.split(";"))
|
||||||
|
|
||||||
|
SECURE_PROXY_SSL_HEADER = ("HTTP_X_FORWARDED_PROTO", "https")
|
||||||
|
SESSION_COOKIE_SECURE = not DEBUG
|
||||||
|
CSRF_COOKIE_SECURE = not DEBUG
|
||||||
|
|
||||||
|
|
||||||
# Application definition
|
# Application definition
|
||||||
|
|
||||||
|
|
Reference in a new issue