Files
wijtransferen/frontend/nginx.conf
T
2026-08-22 20:58:27 +02:00

8 lines
117 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
location / {
try_files $uri /index.html;
}
}