nginx + puma 배치 rails 4 의 상세 한 기록 을 어렵 게 완성 하 였 습 니 다.

2674 단어
2 주 동안 Google 배포 방법 을 찾 았 지만 많은 방법 이 사용 되 지 않 았 습 니 다. 결국 제어 변수 법 을 사용 하여 설정 파일 을 하나씩 수정 하 는 데 성 공 했 습 니 다.
먼저 / etc / nginx / vhosts / limlog. sloger. info. conf 와 config / puma. rb 입 니 다.

#
# /etc/nginx/vhosts/limlog.sloger.info.conf
#
 
upstream limlog {
  server   unix:///tmp/limlog.sock;
}
 
server {
  listen 80;
  server_name     limlog.sloger.info;
 
  root        /srv/http/limlog.sloger.info/public;
 
  access_log     /var/log/nginx/limlog-access.log;
  error_log      /var/log/nginx/limlog-error.log info;
 
  location / {
    expires      max;
    add_header     Cache-Control public;
 
    proxy_redirect   off;
    proxy_set_header  Host        $http_host;
    proxy_set_header  X-Forwarded-For  $proxy_add_x_forwarded_for;
 
    proxy_pass     http://limlog;
  }
 
  location ~ ^/assets/ {
    expires   1y;
    gzip_static on;
    add_header ETag "";
    add_header Cache-Control public;
    break;
  }
}

#!/usr/bin/env ruby -w
 
#
# config/puma.rb
#
 
rails_env = ENV['RAILS_ENV'] || 'development'
 
threads 4, 4
 
bind 'unix:///tmp/limlog.sock'
pidfile '/tmp/limlog.pid'
state_path '/tmp/limlog.state'
 
activate_control_app

nginx 설정 파일 의 루트 servername upstream 을 당신 의 것 으로 수정 하면 됩 니 다. 모든 파일 을 어디 에 두 었 는 지, 파일 머리 주석 에 적 혀 있 습 니 다.
그리고 config / environmens / production. rb 를 수정 합 니 다.
18 줄 false 에서 true 로 변경

# Disable Rails's static asset server (Apache or nginx will already do this).
config.serve_static_assets = true

29 줄 주석 취소

# Specifies the header that your server uses for sending files.
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx

그다음에 app / controller / applicationcontroller
두 번 째 줄 인자 with:: exception 제거

protect_from_forgery

손 은 secretkey_base
내 방법 은 파일 env. sh 를 만 드 는 것 이다.

#    rake secret    key,       =   
export SECRET_KEY_BASE=

#      export       

시동 을 걸다
시작 또는 다시 시작 nginx
환경 변수 소스 env. sh 가 져 오기
rails bundle exec - C config / puma. rb - e 프로 덕 션 시작
이제 배치 가 끝 났 습 니 다. 가장 골 치 아 픈 assets 도 해결 되 었 습 니 다 ~

좋은 웹페이지 즐겨찾기