当前位置: 移动技术网 > IT编程>脚本编程>Ruby > 艰难完成 nginx + puma 部署 rails 4的详细记录

艰难完成 nginx + puma 部署 rails 4的详细记录

2017年12月08日  | 移动技术网IT编程  | 我要评论

花了两周时间 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 配置文件里的 root server_name 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/application_controller

第二行参数 with: :exception 去掉

protect_from_forgery

然手是 secret_key_base

我的做法是创建一个文件 env.sh

# 使用 rake secret 生成 key, 然后粘贴在 = 后面
export secret_key_base=

# 下面可以 export 各种环境变量

启动

启动或者重启 nginx

导入环境变量 source env.sh

启动 rails bundle exec -c config/puma.rb -e production

现在就部署完毕了, 最令人头疼的 assets 也解决了~

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网