Created
February 8, 2010 18:04
-
-
Save fffergal/298405 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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