Skip to content

Instantly share code, notes, and snippets.

@ThorstenHans
Created February 18, 2018 19:09
Show Gist options
  • Save ThorstenHans/797cf26d38de10115739ed651ecaab83 to your computer and use it in GitHub Desktop.
Save ThorstenHans/797cf26d38de10115739ed651ecaab83 to your computer and use it in GitHub Desktop.
0815 nginx config
server {
listen 80;
sendfile on;
default_type application/octet-stream;
gzip on;
gzip_http_version 1.1;
gzip_disable "MSIE [1-6]\.";
gzip_min_length 256;
gzip_vary on;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
gzip_comp_level 9;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ /index.html =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment