www/gitlab: fix typo in files/patch-lib_support_nginx_gitlab-ssl

Fix wrong root directory for HTTP error codes 404, 422, 500, 502
and 503 point.

Submitted by: Jose Luis Duran <jlduran@gmail.com>
Approved by:  pi (mentor)
This commit is contained in:
Torsten Zuehlsdorff 2016-07-04 13:53:28 +00:00
parent f5904942af
commit ae7a1de1b9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=418027
2 changed files with 2 additions and 1 deletions

View file

@ -4,6 +4,7 @@
PORTNAME= gitlab
PORTVERSION= 8.8.5
DISTVERSIONPREFIX= v
PORTREVISION= 1
CATEGORIES= www devel
MAINTAINER= tz@FreeBSD.org

View file

@ -14,7 +14,7 @@
error_page 503 /503.html;
location ~ ^/(404|422|500|502|503)\.html$ {
- root /home/git/gitlab/public;
+ root /home/git/gitlab/public;
+ root /usr/local/www/gitlab/public;
internal;
}
}