corrierifrontend/dockerfile/nginx.conf
AV77web ca03d6c07c
Some checks failed
Deploy to VPS / build (push) Failing after 1s
Deploy to VPS / deploy (push) Has been skipped
primo commit
2026-06-21 00:49:11 +02:00

11 lines
168 B
Nginx Configuration File

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