why
why

Reputation: 24851

How to deploy rails application to mutil servers?

I have to 3 servers, i plan to use one for nginx, others for rails passenger , i want to know how to config ? thanks!

Upvotes: 1

Views: 72

Answers (2)

Scott Radcliff
Scott Radcliff

Reputation: 1541

I have successfully used Capistrano Multistage https://github.com/capistrano/capistrano/wiki/2.x-Multistage-Extension

Works well for 2 environments. Staging and production; I assume that it work well with more.

Upvotes: 1

Santa Zhang
Santa Zhang

Reputation: 894

You can check out Capistrano, it's a very handy tool to help deploying Rails applications to multiple servers.

Upvotes: 3

Related Questions