Files
makelore/resources/project-templates/works-compose/nginx.conf
2026-07-29 17:22:35 +08:00

11 lines
159 B
Nginx Configuration File

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