Skip to content

Instantly share code, notes, and snippets.

@SebastianCB-dev
Last active March 9, 2023 21:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SebastianCB-dev/11a8b6e275f87b29bd80a1c3cdce0224 to your computer and use it in GitHub Desktop.
Save SebastianCB-dev/11a8b6e275f87b29bd80a1c3cdce0224 to your computer and use it in GitHub Desktop.
nginx Configuration
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_comp_level 9;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
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