ci
This commit is contained in:
12
server/nginx/default.conf
Normal file
12
server/nginx/default.conf
Normal file
@@ -0,0 +1,12 @@
|
||||
server {
|
||||
listen 80;
|
||||
server_name localhost;
|
||||
# Racine web = contenu statique sparse (dossier content/ du dépôt).
|
||||
root /usr/share/nginx/html/content;
|
||||
index index.html index.htm;
|
||||
|
||||
location / {
|
||||
add_header Cache-Control "no-cache";
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user