Hi Somehow my log directory path is relative and as such raises the following error
Rails Error: Unable to access log file. Please ensure that /var/sites/ t/txyze.com/txyze/releases/20100429195125/log/production.log exists and is chmod 0666. The log level has been raised to WARN and the output directed to STDERR until the problem is fixed. Instead of this: lrwxrwxrwx 1 txyze 3649 20 Apr 29 20:51 log -> txyze/shared/log I need the full path lrwxrwxrwx 1 txyze 3649 20 Apr 29 20:51 log -> /var/sites/t/ txyze.com/txyze/shared/log Is there some way I can configure this in deploy.rb? Is this a passenger config issue I should be speaking with my host about? I'm pretty frustrated at the moment. Thanks in advance. :) My deploy looks like this and pulls fine from github. set :application, "txyze" set :domain, "x" set :repository, "x" set :scm, :git set :scm_username, "x" set :use_sudo, false set :deploy_to, "txyze" set :branch, "master" set :deploy_via, :remote_cache set :user, "txyze" role :app, domain role :web, domain role :db, domain, :primary => true -- * You received this message because you are subscribed to the Google Groups "Capistrano" group. * To post to this group, send email to [email protected] * To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/capistrano?hl=en
