2012-04-25から1日間の記事一覧

unicorn + rails + nginx 設定メモ

/etc/nginx/nginx.conf 変更なし /etc/nginx/conf.d/default.conf ---------- upstream api { server unix:/tmp/unicorn.sock; } server { listen 80; server_name localhost; location / { root /var/www; index index.html; ssi on; } } server { listen 8…