xoxys.nginx/templates/etc/nginx/conf.d/header.conf.j2

7 lines
298 B
Plaintext
Raw Normal View History

2017-07-15 17:24:48 +02:00
# {{ ansible_managed }}
2017-07-15 22:33:16 +02:00
# default header settings
2018-08-13 21:41:12 +02:00
add_header Strict-Transport-Security{% if nginx_hsts_options is defined %} "{{ nginx_hsts_options | join("; ") }}"{% endif %};
2017-07-15 17:24:48 +02:00
add_header X-Frame-Options DENY;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";