You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
gzip on; |
|
gzip_disable "msie6"; |
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml font/ttf font/woff2 font/woff font/opentype image/png; |
|
|
|
|
|
server { |
|
listen 3020; |
|
listen [::]:3020; |
|
|
|
root /usr/share/nginx/html; |
|
|
|
index index.html; |
|
|
|
resolver 127.0.0.1; |
|
|
|
location / { |
|
try_files $uri $uri/ /index.html; |
|
} |
|
}
|
|
|