Files
baron-safe-app/docker/nginx.conf
T
kevin 5f7b9a7360
ci / flutter-check (push) Successful in 4s
Initial Baron Safe app scaffold
2026-06-30 15:16:14 +09:00

12 lines
152 B
Nginx Configuration File

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