20 lines
307 B
Django/Jinja
20 lines
307 B
Django/Jinja
server {
|
|
{% include './templates/header.conf.j2' %}
|
|
|
|
root /srv/http/analyse.nintendojo.fr/;
|
|
index index.html index.htm index.php;
|
|
|
|
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
|
|
expires 2w;
|
|
log_not_found off;
|
|
}
|
|
|
|
location ~ \.htaccess$ {
|
|
deny all;
|
|
}
|
|
|
|
location ~ ^/tmp {
|
|
deny all;
|
|
}
|
|
}
|