Files
helloasso/frontend/nginx.conf
2025-12-05 09:54:35 +01:00

11 lines
158 B
Nginx Configuration File

server {
listen 0.0.0.0:80;
listen [::]:80;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html =404;
}
}