使用 (unicorn 和 nginx) 在 rails app sub uri 上部署 sinatra app

使用 (unicorn 和 nginx) 在 rails app sub uri 上部署 sinatra app

我在 unicorn+nginx 上运行了 rails 应用程序。下面是 nginx.conf 和 unicorn.rb 配置。

nginx.conf

upstream unicorn {
  server unix:/tmp/unicorn.todo.sock fail_timeout=0;
}

server{
  listen 80 default deferred;
  #server_name localhost;
  root /var/www/demo/public;
  try_files $uri/index.html $uri @unicorn;

  location @unicorn {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_redirect off;
    proxy_pass http://unicorn;
  }

  error_page 500 502 503 504 /500.html;
  client_max_body_size 4G;
  keepalive_timeout 10;
}

独角兽

working_directory "/var/www/demo"
pid "/var/www/demo/tmp/pids/unicorn.pid"
stderr_path "/var/www/demo/unicorn.log"
stdout_path "/var/www/demo/unicorn.log"

listen "/tmp/unicorn.todo.sock"
worker_processes 2
timeout 30

对我来说,它运行良好。现在我想部署另一个小型 sinatra 应用程序 rails app sub uri(localhost:3000/sinatraapp)。详细信息:我们知道 rails 应用程序在 localhost:3000 上运行,现在我尝试在 localhost:3000/sinatraapp 上配置 sinatra 应用程序。

请建议我,如何配置上述要求。

相关内容