I'm not sure that's really necessary, unless there's some significant
difference about the servers on which you're targeting.

Any variable can be manually set in config/deploy.rb, if you want, so you
can always do something like:

set :release_path, '/some/path/to/my/app'

Or maybe you would do tricky things like:

set :release_path, "/domains/#{mydomain}/myapp"

Or even:

set :release_path do
  # some Ruby code which returns the path string
end

On Wed, Mar 26, 2008 at 4:24 AM, Viking <[EMAIL PROTECTED]> wrote:

>
> I think you should have several configurations (one for each domain),
> f.e. in config/for_deploy/domain_name/deploy_config.yml.
> Then you should play with ENV['PARAMS'] to use make choice which of
> deploy_config.yml you could use in deploy.rb for setting you
> variables.
> I'll post my solution when I get it working for me
> >
>

--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---

Reply via email to