You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
426 B
Nginx Configuration File
20 lines
426 B
Nginx Configuration File
|
9 hours ago
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name _;
|
||
|
|
root /usr/share/nginx/html;
|
||
|
|
index index.html;
|
||
|
|
|
||
|
|
# Page d'erreur générée par Zola
|
||
|
|
error_page 404 /404.html;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
try_files $uri $uri/ =404;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Cache long pour les assets statiques
|
||
|
|
location ~* \.(css|js|jpg|jpeg|png|gif|ico|svg|woff2?)$ {
|
||
|
|
expires 30d;
|
||
|
|
add_header Cache-Control "public, immutable";
|
||
|
|
}
|
||
|
|
}
|