Nginx+Unicorn+rails多项目

本文介绍如何使用Nginx搭配Unicorn部署Ruby on Rails应用,并实现对旧项目的Lighttpd反向代理,确保平稳过渡。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用nginx搭配unicorn来启动多个工程,同时还要照顾过去那些使用lighttpd启动的项目

一、nginx的安装配置
 tar zxvf nginx-0.7.67.tar.gz
cd nginx-0.7.67/
./configure
make
make install


默认在/usr/local/nginx/sbin下
执行命令
cd /usr/local/nginx/sbin
./nginx

如是想更换端口 编辑配置文件/usr/local/nginx/conf/nginx.conf 中的配置即可

下面要配置一个工程,通过nginx和unicorn来启动

创建这个目录待用/tmp/nginx/sockets/
在nginx配置文件中添加一个

  upstream config_manager {
server unix:/tmp/nginx/sockets/config_manager_unicorn.sock fail_timeout=0;
}


server中添加

server {
listen 80;
server_name ***.******.com;
………
……
location ~ ^/config { (注:这是一个正则表达式 匹配浏览器地址访地址 的path,这里以config开头的path在这里面处理,也可以直接写成 location /config)
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;

proxy_pass http://config_manager;(注:这个config_manager 对应上面的upstream)
}


二、安装unicorn并在项目中添加对应的配置
安装很简单,直接
gem install unicorn


在工程里面 配置路径下添加(这个是github的配置文件,有很多没用的都贴出来了)
unicorn.rb
内容如下:
# unicorn_rails -c /data/github/current/config/unicorn.rb -E production -D

rails_env = ENV['RAILS_ENV'] || 'production'

# 16 workers and 1 master
worker_processes (rails_env == 'production' ? 16 : 4)

# Load rails+github.git into the master before forking workers
# for super-fast worker spawn times
preload_app true

# Restart any workers that haven't responded in 30 seconds
timeout 30

# Listen on a Unix data socket
!!!!!!!!!!!!!!!!!!!!!!!=========下面这个地址要与nginx.conf的upstream相对应
listen '/tmp/nginx/sockets/config_manager_unicorn.sock', :backlog => 2048

##
# REE

# http://www.rubyenterpriseedition.com/faq.html#adapt_apps_for_cow
if GC.respond_to?(:copy_on_write_friendly=)
GC.copy_on_write_friendly = true
end


before_fork do |server, worker|
##
# When sent a USR2, Unicorn will suffix its pidfile with .oldbin and
# immediately start loading up a new version of itself (loaded with a new
# version of our app). When this new Unicorn is completely loaded
# it will begin spawning workers. The first worker spawned will check to
# see if an .oldbin pidfile exists. If so, this means we've just booted up
# a new Unicorn and need to tell the old one that it can now die. To do so
# we send it a QUIT.
#
# Using this method we get 0 downtime deploys.

old_pid = RAILS_ROOT + '/tmp/pids/unicorn.pid.oldbin'
if File.exists?(old_pid) && server.pid != old_pid
begin
Process.kill("QUIT", File.read(old_pid).to_i)
rescue Errno::ENOENT, Errno::ESRCH
# someone else did our job for us
end
end
end

after_fork do |server, worker|
##
# Unicorn master loads the app then forks off workers - because of the way
# Unix forking works, we need to make sure we aren't using any of the parent's
# sockets, e.g. db connection
!!!!!!!!!!!!!!!!!!!=====注释掉了第二行,主要是因为没有开启相应的memcache服务之类======!!!!!!!!!!!!!!!
ActiveRecord::Base.establish_connection
#CHIMNEY.client.connect_to_server

# Redis and Memcached would go here but their connections are established
# on demand, so the master never opens a socket


##
# Unicorn master is started as root, which is fine, but let's
# drop the workers to git:git

begin
uid, gid = Process.euid, Process.egid
user, group = 'root', 'root'
target_uid = Etc.getpwnam(user).uid
target_gid = Etc.getgrnam(group).gid
worker.tmp.chown(target_uid, target_gid)
if uid != target_uid || gid != target_gid
Process.initgroups(user, target_gid)
Process::GID.change_privilege(target_gid)
Process::UID.change_privilege(target_uid)
end
rescue => e
if RAILS_ENV == 'development'
STDERR.puts "couldn't change user, oh well"
else
raise e
end
end
end



配置完成后 访问http://***.***.com/config,会出现config路由不存在,可在工程项目中的config/environment.rb中添加这么一句
ENV['RAILS_RELATIVE_URL_ROOT'] = "/config"


再放个简约的配置

worker_processes 3
listen '/tmp/nginx/sockets/*****.sock', :backlog => 2048
timeout 30

preload_app true

before_fork do |server, worker|
old_pid = pid_file + '.oldbin'
if File.exists?(old_pid) && server.pid != old_pid
begin
Process.kill("QUIT", File.read(old_pid).to_i)
rescue Errno::ENOENT, Errno::ESRCH
# someone else did our job for us
end
end
end



配置完成之后,打开工程目录后,运行:unicorn_rails -c config/unicorn.rb -E production


三、nginx反向代理lighttpd
现在要改用 nginx 做 web server,但是有一些老项目用的 lighttpd。
可以用 nginx 反向代理功能,把一些请求叫给 lighttpd 处理

1 修改 lighttpd 的配置文件

# /etc/lighttpd/lighttpd.conf

# 只允许本机访问  
server.bind = "localhost"

# 从81端口启动
server.port = 81



2 修改 nginx 的配置文件
# /usr/local/nginx/conf/nginx.conf

http {  
# 新的项目 对应 new.domain.com 域名
server {
listen 80;
server_name new.domain.com;
access_log logs/domain1.access.log main;

index index.html;
root /var/www/domain1.com/htdocs;
}

# 旧的项目 对应 old.domain.com 域名
server {
listen 80;
server_name old.domain.com;
location / {
proxy_pass_header Server;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme $scheme;
# 转发给 81 端口的 lighttpd 处理
proxy_pass http://127.0.0.1:81;
}
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值