diff options
author | Abe Voelker <abe@abevoelker.com> | 2012-04-01 14:44:02 -0500 |
---|---|---|
committer | Abe Voelker <abe@abevoelker.com> | 2012-04-01 14:44:12 -0500 |
commit | 6aabf1157aa94ddd504e8d01a146c98583a1f182 (patch) | |
tree | 696b400f3e2d1425b9e78db3a0bb11330f0ec7e8 /doc | |
parent | a8768ffb9d39596d8e9da77c879007e8e655fb5d (diff) | |
download | gitlab-ce-6aabf1157aa94ddd504e8d01a146c98583a1f182.tar.gz |
Move Unicorn unix socket out of /tmp
Diffstat (limited to 'doc')
-rw-r--r-- | doc/installation.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/installation.md b/doc/installation.md index 00a483772ba..da9aa85f1d3 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -220,7 +220,7 @@ Application can be started with next command: Edit /etc/nginx/nginx.conf. Add next code to **http** section: upstream gitlab { - server unix:/tmp/gitlab.socket; + server unix:/home/gitlab/gitlab/tmp/sockets/gitlab.socket; } server { |