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.
16 lines
332 B
16 lines
332 B
4 years ago
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
server_name localhost;
|
||
|
|
||
|
gzip on;
|
||
|
gzip_types text/html text/plain text/css text/xml text/javascript application/javascript application/x-javascript;
|
||
|
gzip_min_length 1024;
|
||
|
gzip_vary on;
|
||
|
|
||
|
root /usr/share/nginx/html;
|
||
|
location / {
|
||
|
try_files $uri $uri/ /index.html;
|
||
|
}
|
||
|
}
|