Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
curl -O http://sysoev.ru/nginx/nginx-0.3.60.tar.gz tar -xzvf nginx-0.3.60.tar.gz cd nginx-0.3.60 ./configure make sudo make install ## and a simple config ## worker_processes 2; error_log logs/error.log notice; pid logs/nginx.pid; events { worker_connections 16384; } http { include conf/mime.types; default_type application/octet-stream; sendfile on; tcp_nopush on; keepalive_timeout 65; tcp_nodelay on; upstream mongrel { server 127.0.0.1:5000; server 127.0.0.1:5001; server 127.0.0.1:5002; } server { listen 80; server_name localhost; access_log off; location / { proxy_pass http://mongrel; } } }
This paste will be private.
From the Design Piracy series on my blog: