mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-12 12:56:26 +00:00
Desactivation des réglages de sécurité HTTPS par défault
This commit is contained in:
parent
2070d3841b
commit
c7c1ee82dd
1 changed files with 6 additions and 6 deletions
|
@ -53,12 +53,12 @@ DATABASES = {
|
|||
}
|
||||
}
|
||||
|
||||
# Security settings
|
||||
SECURE_CONTENT_TYPE_NOSNIFF = True
|
||||
SECURE_BROWSER_XSS_FILTER = True
|
||||
SESSION_COOKIE_SECURE = True
|
||||
CSRF_COOKIE_SECURE = True
|
||||
CSRF_COOKIE_HTTPONLY = True
|
||||
# Security settings, à activer une fois https en place
|
||||
SECURE_CONTENT_TYPE_NOSNIFF = False
|
||||
SECURE_BROWSER_XSS_FILTER = False
|
||||
SESSION_COOKIE_SECURE = False
|
||||
CSRF_COOKIE_SECURE = False
|
||||
CSRF_COOKIE_HTTPONLY = False
|
||||
X_FRAME_OPTIONS = 'DENY'
|
||||
SESSION_COOKIE_AGE = 60 * 60 * 3
|
||||
|
||||
|
|
Loading…
Reference in a new issue