Skip to content

Instantly share code, notes, and snippets.

@henocdz
Created October 2, 2015 04:26
Show Gist options
  • Select an option

  • Save henocdz/0946c2d59cc0aa1fd98f to your computer and use it in GitHub Desktop.

Select an option

Save henocdz/0946c2d59cc0aa1fd98f to your computer and use it in GitHub Desktop.
user nginx;
worker_processes 4;
pid /run/nginx.pid;
events {
worker_connections 768;
}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
include /etc/nginx/conf.d/*.conf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment