For details see here please: https://about.gitlab.com/2018/11/22/gitlab-11-5-released/ Approved by: mentors (implicit)
21 lines
787 B
Plaintext
21 lines
787 B
Plaintext
--- lib/support/nginx/gitlab-ssl.orig 2018-11-21 10:39:57 UTC
|
|
+++ lib/support/nginx/gitlab-ssl
|
|
@@ -23,7 +23,7 @@
|
|
upstream gitlab-workhorse {
|
|
# GitLab socket file,
|
|
# for Omnibus this would be: unix:/var/opt/gitlab/gitlab-workhorse/socket
|
|
- server unix:/home/git/gitlab/tmp/sockets/gitlab-workhorse.socket fail_timeout=0;
|
|
+ server unix:%%PREFIX%%/www/gitlab-ce/tmp/sockets/gitlab-workhorse.socket fail_timeout=0;
|
|
}
|
|
|
|
map $http_upgrade $connection_upgrade_gitlab_ssl {
|
|
@@ -164,7 +164,7 @@ server {
|
|
location ~ ^/(404|422|500|502|503)\.html$ {
|
|
# Location to the GitLab's public directory,
|
|
# for Omnibus this would be: /opt/gitlab/embedded/service/gitlab-rails/public
|
|
- root /home/git/gitlab/public;
|
|
+ root %%PREFIX%%/www/gitlab-ce/public;
|
|
internal;
|
|
}
|
|
}
|