Skip to content

Instantly share code, notes, and snippets.

@fffergal
Created February 8, 2010 18:04
Show Gist options
  • Save fffergal/298405 to your computer and use it in GitHub Desktop.
Save fffergal/298405 to your computer and use it in GitHub Desktop.
worker_processes 1;
error_log /dev/null crit;
pid /tmp/nginxbugtest.pid;
events {
worker_connections 1024;
}
http {
server_names_hash_bucket_size 64;
include /usr/local/nginx/conf/mime.types;
default_type application/octet-stream;
access_log off;
sendfile on;
keepalive_timeout 65;
server {
listen 8081;
location / {
proxy_pass http://unix:/tmp/nginxbugtest.sock:;
}
}
server {
listen unix:/tmp/nginxbugtest.sock;
root .;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment