Skip to content

Instantly share code, notes, and snippets.

@kazuho
Last active September 23, 2015 14:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kazuho/c9c12021567e3ab83809 to your computer and use it in GitHub Desktop.
Save kazuho/c9c12021567e3ab83809 to your computer and use it in GitHub Desktop.
worker_processes 1;
error_log /dev/stderr warn;
events {
worker_connections 1024;
}
http {
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
keepalive_requests 1000000;
access_log off;
server {
listen 8080;
tcp_nopush on;
location / {
root htdocs;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment