EvalueTonSavoir/client/nginx/default.conf

11 lines
155 B
Text
Raw Normal View History

2024-03-29 20:08:34 -04:00
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
}
}