freebsd-ports/www/gitlab/files/patch-lib_support_nginx_gitlab-ssl
Torsten Zuehlsdorff c488755cf7 www/gitlab: Update from 8.8.7 to 8.9.6
Changes: https://github.com/gitlabhq/gitlabhq/blob/v8.9.6/CHANGELOG

Approved by: junovitch (mentor, implicit)
2016-08-10 14:30:22 +00:00

20 lines
683 B
Text

--- lib/support/nginx/gitlab-ssl.orig 2016-07-11 19:38:44 UTC
+++ lib/support/nginx/gitlab-ssl
@@ -21,7 +21,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;
}
## Redirects all HTTP traffic to the HTTPS host
@@ -107,7 +107,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;
}
}