Notes/nginx/nginx.conf

12 lines
202 B
Nginx Configuration File
Raw Normal View History

2024-10-17 18:53:49 +08:00
server {
listen 80;
sendfile on;
default_type application/octet-stream;
gzip on;
2024-11-22 11:17:34 +08:00
root /usr/share/nginx/html;
2024-10-17 18:53:49 +08:00
location / {
try_files $uri $uri/ /index.html =404;
}
}