ansible/roles/matrix-riot/templates/nginx-riot.j2

21 lines
486 B
Plaintext
Raw Normal View History

2019-02-19 11:10:05 +01:00
# {{ ansible_managed }}
2019-02-07 13:37:03 +01:00
server {
listen 80;
listen [::]:80;
root /opt/Riot/resources/webapp/;
index index.html;
access_log /var/log/nginx/riot-access.log;
error_log /var/log/nginx/riot-errors.log;
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Frame-Options "SAMEORIGIN" always;
location / {
try_files $uri $uri/ =404;
}
}