(8) EC2にnginx経由のunicorn|EC2でgit+RonR+unicorn+nginx+capistrano+Jenkins
その8|nginx経由でunicorn
1.これまでの目次
- EC2+gitリモートサーバ構築#1
- (2)EC2+gitリモートサーバ構築#2
- (3)EC2にrvm+rubyインストール
- (4)EC2にrailsインストール
- (5)EC2にrails起動テスト
- (6)EC2にunicorn準備
- (7) EC2にnginx準備
2.nginx設定
とりあえず、いろいろと環境ややりたい事によって分割したりすると思いますが、動作の仕組みとして、こんな感じになる。
upstream
今回はunicornでunixソケットを使う事にしている(httpソケットも選択出来る)。このソケットがunicorn入り口になるので、それを定数unicorn_appとして定義server/locationディレクティブでserver_name _;としているところは、とりあえず全てのFQDNに対応する意味。httpプロトコル80番ポートで上記したunicornソケットへプロキシさせる。
user nginx;
worker_processes 1;
pid /var/run/nginx.pid;
error_log /var/log/nginx/error.log;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
sendfile on;
keepalive_timeout 65;
upstream unicorn_app {
server unix:/tmp/unicorn.sock;
}
server {
listen 80;
server_name _;
location / {
proxy_pass http://unicorn_app;
}
}
}
3.動作確認
rails project rootにcdし、unicornを実行後、nginxを起動し、
ブラウザで確認。railsアプリの画面が出ればOK
cd /work/sample/
unicorn -c config/unicorn.rb -D
/etc/rc.d/init.d/nginx start
Author And Source
この問題について((8) EC2にnginx経由のunicorn|EC2でgit+RonR+unicorn+nginx+capistrano+Jenkins), 我々は、より多くの情報をここで見つけました https://qiita.com/studio23c/items/0473b7ad89a3a6d21211著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .