diff options
author | Mike Wyatt <wyatt.mike@gmail.com> | 2013-01-31 18:33:11 -0330 |
---|---|---|
committer | Mike Wyatt <wyatt.mike@gmail.com> | 2013-01-31 18:33:11 -0330 |
commit | 5e28710692dd1eb872b6c25e674c81c0593ed0ac (patch) | |
tree | 991d9de3041b381435a7d954b3f1c354deebf3ff /config/unicorn.rb.example | |
parent | 5857a7a9ce6f9bd37b633d48074778bcbde880a4 (diff) | |
download | gitlab-ce-5e28710692dd1eb872b6c25e674c81c0593ed0ac.tar.gz |
remove hardcoded app_dir from unicorn.rb.example
Diffstat (limited to 'config/unicorn.rb.example')
-rw-r--r-- | config/unicorn.rb.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/unicorn.rb.example b/config/unicorn.rb.example index 4852cd65daa..123033486f4 100644 --- a/config/unicorn.rb.example +++ b/config/unicorn.rb.example @@ -2,7 +2,7 @@ # note that config/gitlab.yml web path should also be changed # ENV['RAILS_RELATIVE_URL_ROOT'] = "/gitlab" -app_dir = "/home/gitlab/gitlab/" +app_dir = File.expand_path '../../', __FILE__ worker_processes 2 working_directory app_dir |