Spaces:
Build error
Build error
File size: 314 Bytes
cf9c856 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
server {
listen 7860;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
# Enable gzip compression
gzip on;
gzip_types text/plain text/css application/javascript application/json;
gzip_min_length 1000;
} |