Notes/nginx/nginx.conf
2024-11-22 11:17:34 +08:00

12 lines
No EOL
202 B
Nginx Configuration File

server {
listen 80;
sendfile on;
default_type application/octet-stream;
gzip on;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html =404;
}
}