forked from Lainports/freebsd-ports
Changes: https://github.com/gitlabhq/gitlabhq/blob/v8.9.6/CHANGELOG Approved by: junovitch (mentor, implicit)
20 lines
644 B
Text
20 lines
644 B
Text
--- lib/support/nginx/gitlab.orig 2016-07-11 19:38:44 UTC
|
|
+++ lib/support/nginx/gitlab
|
|
@@ -17,7 +17,7 @@
|
|
## See installation.md#using-https for additional HTTPS configuration details.
|
|
|
|
upstream gitlab-workhorse {
|
|
- server unix:/home/git/gitlab/tmp/sockets/gitlab-workhorse.socket fail_timeout=0;
|
|
+ server unix:/usr/local/www/gitlab/tmp/sockets/gitlab-workhorse.socket fail_timeout=0;
|
|
}
|
|
|
|
## Normal HTTP host
|
|
@@ -63,7 +63,7 @@ server {
|
|
error_page 502 /502.html;
|
|
error_page 503 /503.html;
|
|
location ~ ^/(404|422|500|502|503)\.html$ {
|
|
- root /home/git/gitlab/public;
|
|
+ root /usr/local/www/gitlab/public;
|
|
internal;
|
|
}
|
|
|