Skip to content

Instantly share code, notes, and snippets.

@slywalker
Created May 24, 2013 07:13
Show Gist options
  • Save slywalker/5641805 to your computer and use it in GitHub Desktop.
Save slywalker/5641805 to your computer and use it in GitHub Desktop.
#user nobody;
worker_processes 1;
events {
worker_connections 1024;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
# server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include mime.types;
default_type application/octet-stream;
add_header Access-Control-Allow-Origin *;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
##
# Virtual Host Configs
##
include conf.d/*.conf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment