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

10 lines
149 B
Nginx Configuration File

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