Ajouter 'cryptide_project/nginx.conf'
continuous-integration/drone/push Build is passing Details

pull/99/head
Thomas CHAZOT 1 year ago
parent 6f3f01bbb5
commit fcb3594201

@ -0,0 +1,16 @@
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
error_page 404 /index.html;
location ~ /\. {
deny all;
}
}
Loading…
Cancel
Save