You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 26, 2026. It is now read-only.
pool :cb do
instances 2..5
ami "ami-1cd73375" #Alestic's base Ubuntu AMI
cloud :app do
apache do
installed_as_worker
has_virtualhost do
name “poolpartyrb.com”
listen("")
virtual_host_entry ::File.join(File.dirname(FILE), “templates”, “virtual_host.conf.erb”)
#We are going to have a repository that is updated across the servers
has_git({:name => “poolpartyrepos”,
:source => “git://github.com/auser/poolparty-website.git”,
:at => “/var/www/poolpartyrb.com”}) do
has_symlink({:name => “/var/www/poolpartyrb.com/public”,
:from => “/var/www/poolpartyrb.com/repos/site”})
end
end
end
end