nginx/application: Added security relevant HTTP headers to global config

Duplicates removed from server/nextcloud
dehydrated
Felix Stupp 4 years ago
parent fc2a098ff2
commit 5c374bc977
Signed by: zocker
GPG Key ID: 93E1BD26F6B02FB7

@ -6,4 +6,8 @@ location = /robots.txt {
access_log off; access_log off;
} }
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options SAMEORIGIN;
add_header X-XSS-Protection "1; mode=block";
include {{ nginx_snippets_directory }}/resolver.conf; include {{ nginx_snippets_directory }}/resolver.conf;

@ -20,8 +20,6 @@ dependencies:
memory_limit: 1G memory_limit: 1G
- role: nginx/server - role: nginx/server
directives: | directives: |
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none; add_header X-Robots-Tag none;
add_header X-Download-Options noopen; add_header X-Download-Options noopen;
add_header X-Permitted-Cross-Domain-Policies none; add_header X-Permitted-Cross-Domain-Policies none;

Loading…
Cancel
Save