Notes/nginx/nginx.conf

12 lines
203 B
Nginx Configuration File
Raw Permalink Normal View History

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