Created
April 15, 2009 01:14
-
-
Save mikewadhera/95529 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pool :involver_rails do | |
cloud :nginx do | |
instances 2..2 # binds against 2 elastic IPs | |
has_package "nginx" | |
end | |
cloud :app do | |
instances 2..12 | |
# calls register_backend(self) on all members of cloud nginx on bootstrap & configure | |
has_frontend_cloud :nginx | |
end | |
cloud :db do | |
mysql do | |
... | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment