Skip to content

Instantly share code, notes, and snippets.

@minakolta
Last active December 17, 2015 20:19
Show Gist options
  • Save minakolta/5667248 to your computer and use it in GitHub Desktop.
Save minakolta/5667248 to your computer and use it in GitHub Desktop.
Nginx configurations sample
user apache apache;
worker_processes 4; #cpu cores
pid /var/run/nginx.pid;
events {
worker_connections 768;
# multi_accept on;
}
http {
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_names_hash_bucket_size 64;
server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
##
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
##
# Virtual Host Configs
##
#include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment