Files
chore/web/vue-app/nginx.conf
2025-12-08 16:46:33 -05:00

12 lines
196 B
Nginx Configuration File

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