frontend/nginx.conf
Rodrigo Verdiani 400c9f19fa
All checks were successful
ci/woodpecker/push/pipeline Pipeline was successful
feature(docker): update Dockerfile for Nginx production setup and adjust build args
2025-10-30 16:37:36 -03:00

12 lines
144 B
Nginx Configuration File

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