nginx と gunicorn + meinheld を組み合わせた時のメモ。 nginx はリバースプロキシとして gunicorn に飛ばし、gunicorn の worker として meinheld を使った。 環境は Fedora13。 nginx は yum でインストール。 /etc/nginx/conf.d/virtual.conf に以下を追加。 Green Unicorn - Deployment にあるのをほぼそのまま。 upstream app_server { server unix:/var/run/gunicorn/gunicorn.sock fail_timeout=0; # For a TCP configuration: #server 192.168.1.2:8000 fail_timeout=0; } server { listen 80 defa