注:複数のレールアプリケーションを展開する必要があるため、私のレールアプリケーションでパッセンジャースタンドアロンが正常に動作するため、パッセンジャーインストール-nginx-モジュールが必要です
OS ubuntu 12.04 LTS 64 ビット
Ruby REE 1.8.7 (brightbox リポジトリからインストール)
レール2.3.17
Passenger -install-nginx-moduleを介してインストールされたNginx
乗客3.0.19
ニンクス1.2.6
私のnginx.conf
/opt/nginx/conf/nginx.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
passenger_root /usr/lib/ruby/gems/1.8/gems/passenger-3.0.19;
passenger_ruby /usr/bin/ruby1.8;
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 80;
server_name localhost;
root /home/sampath/railsdemoapp/public;
passenger_enabled on;
}
}
sudo /opt/nginx/sbin/nginx から nginx を起動すると、URL にアクセスすると 403 Forbidden nginx/1.2.6 と表示されます