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

13 lines
194 B
Nginx Configuration File

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