Gitlab в подкаталоге блокирует другие места за пределами git lab - PullRequest
0 голосов
/ 04 октября 2018

У меня есть внутренняя омнибусная инсталляция, расположенная в подкаталоге, доступ к которой осуществляется с помощью myinternalserver/gitlab.Так было больше года.Мы зависим от CI для внутренних итераций программного обеспечения и отслеживания изменений.Поскольку конфигурация нашего домена не позволяет нам использовать субдомены, мы выбрали установку подкаталога.Мы также надеялись использовать сервер не только для gitlab, к сожалению, все, что находится за пределами схемы myinternalserver/gitlab, встречается с белой страницей с точной фразой Not found "/PLACEYOUWERELOOKINGFOR"

, которую я собираюсь сделатьпредположить и сказать, что сообщение «Not found» получено от службы nginx от gitlab, я также собираюсь предположить, что оно как-то связано с правилами перезаписи apache сервера, но я не могу понять, какие именно изменения нужно внести.

# This configuration has been tested on GitLab 8.2
# Note this config assumes unicorn is listening on default port 8080 and
# gitlab-workhorse is listening on port 8181. To allow gitlab-workhorse to
# listen on port 8181, edit /etc/gitlab/gitlab.rb and change the following:
#
# gitlab_workhorse['listen_network'] = "tcp"
# gitlab_workhorse['listen_addr'] = "127.0.0.1:8181"
#
#Module dependencies
# mod_rewrite
# mod_proxy
# mod_proxy_http



<VirtualHost *:80>
  DocumentRoot /var/www/html
  ServerName dev2
  ServerSignature Off

  ProxyPreserveHost on

  # Ensure that encoded slashes are not decoded but left in their encoded state.
  # http://doc.gitlab.com/ce/api/projects.html#get-single-project
  AllowEncodedSlashes NoDecode

 #Gitlab
 Alias /gitlab /opt/gitlab/embedded/html
  <Location /gitlab>
    # New authorization commands for apache 2.4 and up
    # http://httpd.apache.org/docs/2.4/upgrading.html#access
    Require all granted

    #Allow forwarding to gitlab-workhorse
    ProxyPassReverse http://127.0.0.1:8181
    ProxyPassReverse http://dev2/gitlab
  </Location>

  # Apache equivalent of nginx try files
  # http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files
  # http://stackoverflow.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab
  RewriteEngine on

  #Forward all requests to gitlab-workhorse except existing files like error documents
  RewriteCond %{REQUEST_URI} ^/gitlab/api/v3/.*
  RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
  RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f [OR]
  RewriteCond %{REQUEST_URI} ^/gitlab/uploads/.*
  RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]

  # needed for downloading attachments
  DocumentRoot /opt/gitlab/embedded/service/gitlab-rails/public
  Alias /gitlab /opt/gitlab/embedded/

  #Set up apache error documents, if back end goes down (i.e. 503 error) then a maintenance/deploy page is thrown up.
  ErrorDocument 404 /404.html
  ErrorDocument 422 /422.html
  ErrorDocument 500 /500.html
  ErrorDocument 502 /502.html
  ErrorDocument 503 /503.html

  # It is assumed that the log directory is in /var/log/httpd.
  # For Debian distributions you might want to change this to
  # /var/log/apache2.
  LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b" common_forwarded
ProxyRequests on
  #ErrorLog /var/log/apache2/logs/dev2_error.log
  #CustomLog /var/log/apache2/logs/dev2_forwarded.log common_forwarded
  #CustomLog /var/log/apache2/logs/dev2_access.log combined env=!dontlog
  #CustomLog /var/log/apache2/logs/dev2.log combined
</VirtualHost>

Любая помощь или предложения будут высоко оценены.

...