esameits24-26frontend/dockerfile/nginx.conf
AV77web 3e1f6743c6
All checks were successful
Deploy to VPS / build (push) Successful in 19s
Deploy to VPS / deploy (push) Successful in 16s
primo commit
2026-07-12 22:55:42 +02:00

11 lines
168 B
Nginx Configuration File

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