Created
February 18, 2018 19:09
-
-
Save ThorstenHans/797cf26d38de10115739ed651ecaab83 to your computer and use it in GitHub Desktop.
0815 nginx config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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