Skip to content

Instantly share code, notes, and snippets.

@teresko
Created August 25, 2015 18:10
Show Gist options
  • Save teresko/fee5ec26b41354a995d9 to your computer and use it in GitHub Desktop.
Save teresko/fee5ec26b41354a995d9 to your computer and use it in GitHub Desktop.
user www;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
server_tokens off;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include /usr/local/etc/nginx/sites-active/*;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment