provapraticafrontend/dockerfile/nginx.conf

12 lines
168 B
Nginx Configuration File
Raw Normal View History

2026-06-09 12:25:37 +02:00
server {
listen 3002;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}