11

http://myipaddress.comへの着信要求http://localhost:3000/が Gitlab (レール アプリ) を実行している場所に送信されるように、Apache2 でプロキシをセットアップしようとしています。以下は、Ubuntu 10.04 の Apache 構成ファイルにあるものです。最初は gitlab のデフォルト ページに正常にアクセスできますが、その後他のページをクリックして実行したリクエストはすべて 404 NOT FOUND ページに移動します。これらの失敗したリダイレクトの前に /gitlab/ を手動で入力すると、問題なく動作します。最初のリクエスト後の各リダイレクトリクエストの後に /gitlab/ を書き換える必要なく、どうすればこれを機能させることができますか?

## Setup a proxy which listens on the port that gitlabh does ( from start_server.sh )
ProxyRequests Off
ProxyPass /gitlab/ http://localhost:3000/
ProxyPassReverse /gitlab/ http://localhost:3000/
#DocumentRoot /home/gitlabhq/gitlabhq/public
<Proxy http://localhost:3000/>
  Order deny,allow
  Allow from all
</Proxy>

私の問題を解決する以下のコードを使用できることを理解しています。しかし、gitlab rails サービスのプレフィックスを変更する方法がわかりません。助けていただければ幸いです。

ProxyPass /gitlab/ http://localhost:3000/gitlab/
ProxyPassReverse /gitlab/ http://localhost:3000/gitlab/

アップデート:

Friek のコメントのおかげで、私はこれを解決することに非常に近づいています。以下は私の http.conf ファイルの一部です。唯一の問題は、ホーム ボタンまたは gitlab アプリのロゴを押すと、gitlab/ にリダイレクトしようとすることです。これにより、Apache2 から「動作します!」という基本的な index.html ファイルが返されます。/gitlab を取得して、gitlab のルート ホーム ビューに移動できるようにするにはどうすればよいですか?? ありがとう!

## For Gitlab using Apache2 Passenger
## Install on Ubuntu by:
## sudo gem install passenger && sudo passenger-install-apache2-module
## but only after running the install_and_configure_git.py script
## and creating a soft link to the rails gitlab /public directory like so:
## sudo ln -s /home/gitlabhq/gitlabhq/public /var/www/gitlab
LoadModule passenger_module /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.13/ext/apache2/mod_passenger.so
PassengerRoot /usr/local/lib/ruby/gems/1.9.1/gems/passenger-3.0.13
PassengerRuby /usr/local/bin/ruby
<VirtualHost *:80>

        ServerName gitlab

        ## Set the overall Document Root
        DocumentRoot /var/www
        <Directory /var/www>
                Allow from all
        </Directory>

        ## Set the Rails Base URI
        RackBaseURI /gitlab
        RailsBaseURI /gitlab
        <Directory /var/www/gitlab>
                Allow from all
                Options -MultiViews
        </Directory>

</VirtualHost>
4

5 に答える 5

12

私のために働いたこの要点に出くわしました。死んでしまった場合は、再投稿します。


ユニコーン設定ファイル

ファイルを編集/home/gitlab/gitlab/config/unicorn.rb

line listen"#{app_dir}/tmp/sockets/gitlab.socket"を見つけてコメントします。コメントを外して行を聞く"127.0.0.1:8080"

Apache に必要なモジュール

  • sudo a2enmod プロキシ
  • sudo a2enmod proxy_balancer
  • sudo a2enmod proxy_http
  • 須藤a2enmodの書き換え

/home/gitlab/gitlab/config/gitlab.conf

<VirtualHost *:80>
  ServerName git.domain.com

  # Point this to your public folder of teambox
  DocumentRoot /home/gitlab/gitlab

  RewriteEngine On

  <Proxy balancer://unicornservers>
    BalancerMember http://127.0.0.1:8080
  </Proxy>

  # Redirect all non-static requests to thin
  RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
  RewriteRule ^/(.*)$ balancer://unicornservers%{REQUEST_URI} [P,QSA,L]

  ProxyPass / balancer://unicornservers/
  ProxyPassReverse / balancer://unicornservers/
  ProxyPreserveHost on

  <Proxy *>
    Order deny,allow
    Allow from all
  </Proxy>

  # Custom log file locations
  ErrorLog  /var/log/apache2/gitlab_error.log
  CustomLog /var/log/apache2/gitlab_access.log combined
</VirtualHost>
于 2012-11-07T01:55:46.140 に答える
1
<VirtualHost *:80>

        ServerName gitlab

        ## Set the overall Document Root
        DocumentRoot /var/www
        <Directory /var/www>
                Allow from all
        </Directory>

        ## Set the Rails Base URI
        RackBaseURI /gitlab
        RailsBaseURI /gitlab
        <Directory /var/www/gitlab>
                Allow from all
                Options -MultiViews
        </Directory>

</VirtualHost>

httpd.conf またはサイトの構成ファイルでこれらの設定を行う必要があります。リバース プロキシ設定がある場合は削除して試してみてください。動作します。

上記の構成とともに以下の行がある場合は、以下の行を削除してください。

ProxyPass /gitlab/ http://localhost:3000/gitlab/
ProxyPassReverse /gitlab/ http://localhost:3000/gitlab/
Proxy on

ウェブサーバーを再起動します

service apache2 restart
于 2012-10-30T10:46:23.600 に答える
0

これは、新しい人がこの問題に遭遇した場合に備えてです。

これは私を助けました.ProxyPassReverse行に注意してください. 私の完全な問題と解決策はhttps://stackoverflow.com/a/22390543/3112527にあります。

<IfModule mod_ssl.c>
<VirtualHost *:443>
  Servername gitlab.my_domain.com
  ServerAdmin my_admin@my_domain.com

  SSLCertificateFile /etc/apache2/ssl.crt/gitlab_my_domain.crt
  SSLCertificateKeyFile /etc/apache2/ssl.crt/gitlab_my_domain_private.key
  SSLCACertificateFile /etc/apache2/ssl.crt/gitlab.ca-bundle

  ##### All the other Apache SSL setup skipped here for StackOverflow ####

  ProxyPreserveHost On

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

    # For relative URL root "host:your_gitlab_port/relative_root"
    #ProxyPassReverse http://127.0.0.1:8085/gitlab
    #ProxyPassReverse https://gitlab.my_domain.com/gitlab

    # For non-relative URL root
    ProxyPassReverse http://127.0.0.1:8085
    ProxyPassReverse https://gitlab.my_domain.com/
  </Location>

  # apache equivalent of nginx try files
  # http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files
  # https://stackoverflow.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab
  RewriteEngine on
  RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
  RewriteRule .* http://127.0.0.1:8080%{REQUEST_URI} [P,QSA]
  RequestHeader set X_FORWARDED_PROTO 'https'

  # needed for downloading attachments
  DocumentRoot /home/git/gitlab/public

  #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 503 /deploy.html

  LogFormat  "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b" common_forwarded
  ErrorLog      /var/log/apache2/gitlab-ssl_error.log
  CustomLog /var/log/apache2/gitlab-ssl_forwarded.log common_forwarded
  CustomLog /var/log/apache2/gitlab-ssl_access.log combined env=!dontlog
  CustomLog /var/log/apache2/gitlab-ssl.log combined
</VirtualHost>
</IfModule>

( https://github.com/gitlabhq/gitlab-recipes/blob/master/web-server/apache/gitlab-ssl-apache2.4.confから)

于 2014-03-13T21:42:19.547 に答える
0

Apache (ポート 80) を使用して Rails + Unicorn をセットアップし、Unicorn (ポート 3000) にプロキシする際に発生したエラーをグーグルで検索しているときに、ここにたどり着きました。他の人に役立つ場合のために、私の設定は次のとおりです。

<VirtualHost example.com:80>
  ServerAdmin webmaster@example.com
  ServerName example.com
  ServerAlias www.example.com

  ProxyPreserveHost On
  <Location />
      Require all granted
      ProxyPassReverse http://example.com:3000
  </Location>

  RewriteEngine on
  RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f
  RewriteRule .* http://example.com:3000%{REQUEST_URI} [P,QSA]

  DocumentRoot /home/user/rails-dir/public
  ErrorDocument 404 /404.html
  ErrorDocument 422 /422.html
  ErrorDocument 500 /500.html
  ErrorDocument 503 /deploy.html

  LogLevel warn
  ErrorLog /home/user/rails-dir/log/apache-error.log
  CustomLog /home/user/rails-dir/log/apache-access.log combined
</VirtualHost>
于 2015-07-21T14:29:14.180 に答える