Skip to content

Instantly share code, notes, and snippets.

@jimrybarski
Created September 10, 2013 17:53
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 jimrybarski/6513039 to your computer and use it in GitHub Desktop.
Save jimrybarski/6513039 to your computer and use it in GitHub Desktop.
Nginx configuration
worker_processes 2;
events {
worker_connections 1024;
}
http {
sendfile on;
keepalive_timeout 3;
gzip on;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
include /etc/nginx/mime.types;
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