Skip to content

Instantly share code, notes, and snippets.

@mortik
Last active December 19, 2015 15:39
Show Gist options
  • Save mortik/5978148 to your computer and use it in GitHub Desktop.
Save mortik/5978148 to your computer and use it in GitHub Desktop.
NGINX Config
worker_processes 1;
error_log /usr/local/etc/nginx/logs/error.log debug;
#pid logs/nginx.pid;
events {
worker_connections 128;
}
http {
include mime.types;
access_log /usr/local/etc/nginx/logs/access.log combined;
sendfile on;
keepalive_timeout 65;
include /usr/local/etc/nginx/sites-enabled/*;
client_max_body_size 100m;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment