diff options
Diffstat (limited to 'config/deploy')
| -rw-r--r-- | config/deploy/mo.rb | 9 | ||||
| -rw-r--r-- | config/deploy/prod.rb (renamed from config/deploy/production.rb) | 6 | ||||
| -rw-r--r-- | config/deploy/qa.rb | 1 |
3 files changed, 5 insertions, 11 deletions
diff --git a/config/deploy/mo.rb b/config/deploy/mo.rb index 7a4aa1a..8303ec5 100644 --- a/config/deploy/mo.rb +++ b/config/deploy/mo.rb @@ -1,8 +1 @@ -# Your HTTP server, Apache/etc -role :web, "192.241.151.56" -# This may be the same as your `Web` server -role :app, "192.241.151.56" -# This is where Rails migrations will run -role :db, "192.241.151.56", primary: true - -set :branch, "mo" +server "192.241.151.56", :web, :app, :db, primary: true diff --git a/config/deploy/production.rb b/config/deploy/prod.rb index b4224ee..dbf27dd 100644 --- a/config/deploy/production.rb +++ b/config/deploy/prod.rb @@ -1,8 +1,8 @@ # Your HTTP server, Apache/etc -role :web, "www.parleytool.com" +role :web, "198.199.118.206" # This may be the same as your `Web` server -role :app, "www.parleytool.com" +role :app, "198.199.118.206" # This is where Rails migrations will run -role :db, "www.parleytool.com", primary: true +role :db, "198.199.118.206", primary: true #role :db, "your slave db-server here" diff --git a/config/deploy/qa.rb b/config/deploy/qa.rb new file mode 100644 index 0000000..1d031f0 --- /dev/null +++ b/config/deploy/qa.rb @@ -0,0 +1 @@ +server "192.241.204.27", :web, :app, :db, primary: true |
