Files
membank/user-guide/nginx.conf
12600k-rog-d4 1e15827707 0401
2026-04-01 02:21:55 +08:00

27 lines
480 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
root /app;
index index.html;
autoindex on;
autoindex_format html;
location ~* \.(md)$ {
add_header Content-Type text/plain;
}
location ~* \.(png|jpg|jpeg|gif|svg|ico)$ {
expires 30d;
add_header Cache-Control "public, immutable";
}
location ~* \.(html)$ {
add_header Content-Type text/html;
}
location / {
try_files $uri $uri/ =404;
}
}