Skip to content

Instantly share code, notes, and snippets.

@arzola
Created October 20, 2017 01:50
Show Gist options
  • Save arzola/abef7877fa997f58245df71a5b1ef73b to your computer and use it in GitHub Desktop.
Save arzola/abef7877fa997f58245df71a5b1ef73b to your computer and use it in GitHub Desktop.
user arzola staff;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_proxied any;
gzip_vary on;
gzip_types
application/atom+xml
application/javascript
application/json
application/rss+xml
application/vnd.ms-fontobject
application/x-font-ttf
application/x-web-app-manifest+json
application/xhtml+xml
application/xml
font/opentype
image/svg+xml
image/x-icon
text/css
text/plain
text/x-component;
include servers/*;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment