unicorn Ruby/Rack server user+dev discussion/patches/pulls/bugs/help
 help / color / mirror / code / Atom feed
From: Eric Wong <e@80x24.org>
To: Imdad <khanimdad@gmail.com>
Cc: unicorn-public <unicorn-public@bogomips.org>
Subject: Re: Having issue with Unicorn
Date: Fri, 24 Oct 2014 18:13:00 +0000	[thread overview]
Message-ID: <20141024181300.GA29311@dcvr.yhbt.net> (raw)
In-Reply-To: <CADQvUy79jAyoEVJz-t-fEnQTAq9foQeYhpOkLVKx_3oejzgzAw@mail.gmail.com>

Imdad <khanimdad@gmail.com> wrote:
> Thanks Eric, here is my deploy.rb and config/unicorn.rb
> NOTE: /releases/6 and /releases/28 both have same error message
> 
> config/unicorn.rb
> ==============
> # Set your full path to application.
> app_dir = File.expand_path('../../', __FILE__)
> shared_dir = File.expand_path('../../../shared/', __FILE__)

Using __FILE__ with File.expand_path here gets you in trouble
because it loses track of symlinks like "current"

The following should be more explicit, I think:

	app_dir = "/var/www/hailisys/current"
	shared_dir = "/var/www/hailisys/shared"

And the rest of the config/unicorn.rb should pick those up as-is.

> set :deploy_to, '/var/www/hailisys'

Maybe you can export :deploy_to from your deploy config to your
unicorn invocation to DRY-up your config/unicorn.rb config.

So perhaps, something like:

	app_dir = "#{ENV['deploy_to']}/current"
	shared_dir = "#{ENV['deploy_to']}/shared"

  reply	other threads:[~2014-10-24 18:13 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-10-24 17:33 Having issue with Unicorn Imdad
2014-10-24 17:45 ` Eric Wong
2014-10-24 18:02   ` Imdad
2014-10-24 18:13     ` Eric Wong [this message]
2014-10-24 18:28       ` Imdad
2014-10-24 18:34         ` Eric Wong
2014-10-24 18:39           ` Imdad
2014-10-24 18:41             ` Imdad
2014-10-24 19:13             ` Eric Wong
2014-10-24 19:29               ` Imdad
2014-10-24 19:41                 ` Eric Wong
2014-10-24 19:58                   ` Imdad
2014-10-24 20:06                     ` Eric Wong
2014-10-24 20:09                       ` Imdad
2014-10-24 20:17                         ` Eric Wong
2014-10-24 20:35                           ` Imdad
2014-10-24 20:39                             ` Imdad
2014-10-24 20:44                               ` Eric Wong
2014-10-24 20:40                             ` Eric Wong
2014-10-24 20:45                               ` Imdad
2014-10-24 20:50                                 ` Imdad
2014-10-24 20:58                                 ` Eric Wong
2014-10-24 21:24                                   ` Imdad

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://yhbt.net/unicorn/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20141024181300.GA29311@dcvr.yhbt.net \
    --to=e@80x24.org \
    --cc=khanimdad@gmail.com \
    --cc=unicorn-public@bogomips.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://yhbt.net/unicorn.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).