20 lines
486 B
Django/Jinja
20 lines
486 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
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;
|
|
}
|
|
}
|