Files
Arkie-Library-Frontend/nginx.conf
2026-05-16 00:18:22 +08:00

19 lines
239 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location ^~ /api/ {
return 404;
}
location ^~ /uploads/ {
return 404;
}
location / {
try_files $uri $uri/ /index.html;
}
}