diff options
author | lambda <pleromagit@rogerbraun.net> | 2018-05-13 08:39:37 +0000 |
---|---|---|
committer | lambda <pleromagit@rogerbraun.net> | 2018-05-13 08:39:37 +0000 |
commit | bb864e96ad4e0be470da78baa000019f571e30db (patch) | |
tree | 7e78a129d9c5537c2b7c9dc368871d667c1517e4 | |
parent | 17bcff64456144f2f2560f01c7dfa9db44cd09c2 (diff) | |
parent | 0a1fd8adf0c28a5a9384555e3d27a947ee904a62 (diff) | |
download | pleroma-bb864e96ad4e0be470da78baa000019f571e30db.tar.gz |
Merge branch 'patch-2' into 'develop'
Nginx config - secure defaults
See merge request pleroma/pleroma!146
-rw-r--r-- | installation/pleroma.nginx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx index 895799a8e..44905da49 100644 --- a/installation/pleroma.nginx +++ b/installation/pleroma.nginx @@ -59,6 +59,16 @@ server { } # stop removing lines here. + add_header X-XSS-Protection "1; mode=block"; + add_header X-Permitted-Cross-Domain-Policies none; + add_header X-Frame-Options DENY; + add_header X-Content-Type-Options nosniff; + add_header Referrer-Policy same-origin; + add_header X-Download-Options noopen; + + # Uncomment this only after you get HTTPS working. + # add_header Strict-Transport-Security "max-age=31536000; includeSubDomains"; + proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; |