21 lines
298 B
Nginx Configuration File
21 lines
298 B
Nginx Configuration File
gzip on;
|
|
gzip_proxied any;
|
|
gzip_vary on;
|
|
gzip_buffers 16 8k;
|
|
gzip_types *;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
root /var/www/html;
|
|
|
|
location / {
|
|
root /var/www/html;
|
|
try_files $uri /index.html;
|
|
}
|
|
|
|
location = /index.html {
|
|
add_header 'Cache-Control' 'no-cache';
|
|
}
|
|
}
|