Apache2 ProxyPass for Rails 应用程序 Gitlab

Apache2 ProxyPass for Rails App Gitlab

提问人:PhilBot 提问时间:6/9/2012 最后编辑:PhilBot 更新时间:6/13/2018 访问量:23665

问:

我正在尝试使用 Apache2 设置代理,以便 http://myipaddress.com 传入请求转到我运行 Gitlab(一个 rails 应用程序)的地方。以下是我在 Ubuntu 10.04 上的 Apache 配置文件中的内容。我最初可以成功访问 gitlab 默认页面,但之后我通过单击其他页面执行的任何后续请求都会转到 404 NOT FOUND 页面。我可以在任何这些失败的重定向前面手动输入 /gitlab/,它们工作得很好。我怎样才能在不重写 /gitlab/ 的情况下完成这项工作,而无需在初始请求后的每次重定向请求后重写 /gitlab/?http://localhost:3000/

## 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 的基本索引 .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>
Apache 重定向 代理 apache2 proxypass

评论

0赞 David K 6/12/2012
我一直在尝试在这里做一些非常相似的事情,并遇到了这个。github.com/gitlabhq/gitlabhq/pull/642似乎此功能没有并且可能不会包含在 gitlab 中。
0赞 Friek 6/22/2012
为什么不安装 apache passenger 模块(gem install passenger & passenger-install-apache2-module)并将新虚拟主机的 documentroot 指向 <path to gitlab>/public?对我来说效果很好。
0赞 PhilBot 6/23/2012
感谢您的输入,请查看我上面发布的新信息。
0赞 Kjellski 10/30/2012
嘿,@phil999,只是想告诉你,至少你上面写的内容至少与乘客文件所说的内容相比是不安全的。您应该将目录指向。编辑:刚刚看到您正确链接...也许你应该以某种方式为像我这样的盲人大胆一点...... :/干杯!<rails_app_path>/public

答:

1赞 Ravi D 10/30/2012 #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

重新启动 Web 服务器

service apache2 restart
12赞 E-rich 11/7/2012 #2

我遇到了这个对我有用的要点。如果它死了,我会重新发布它。


Unicorn 配置文件

编辑文件/home/gitlab/gitlab/config/unicorn.rb

找到行,听并评论它。取消注释行侦听"#{app_dir}/tmp/sockets/gitlab.socket""127.0.0.1:8080"

Apache 所需的模块

  • sudo a2enmod 代理
  • 须藤 A2Enmod proxy_balancer
  • 须藤 A2Enmod proxy_http
  • sudo a2enmod 重写

/首页/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>

评论

0赞 Justinas Jakavonis 12/9/2016
我修改了 /etc/apache2/sites-available/default-ssl.conf 并添加了带有目录指令的别名 /gitlab “/var/www/gitlab”。当我尝试通过 example.com/gitlab 访问它时,它不起作用/无法加载主页,但 example.com/gitlab/deploy.html 运行良好。如何访问 Gitlab 首页?
0赞 m1st0 3/14/2014 #3

这是为了防止新人遇到这个问题。

这帮助了我,注意到 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)

0赞 austinjp 7/21/2015 #4

我在谷歌上搜索我在使用 Apache(在端口 80 上)代理到 unicorn(在端口 3000 上)设置 Rails + unicorn 时遇到的错误时最终来到了这里。如果它对其他人有用,这是我的配置:

<VirtualHost example.com:80>
  ServerAdmin [email protected]
  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>
0赞 Shihe Zhang 6/13/2018 #5

这个问题也困扰了我很长时间。现在已修复。
最有用的资源来自 Gitlab 官方文档,内容是关于使用非捆绑 web-server 的。
他们还提供完整的可行配方

如果您使用的是 Apache 2.4 或更高版本,请使用文件 gitlab-apache24.conf 或 gitlab-ssl-apache24.conf 用于 HTTP 和 虚拟主机的 HTTPS 版本。

如果您使用的是 Apache 2.2 版,请使用文件 gitlab-apache22.conf 或 gitlab-ssl-apache22.conf 用于 HTTP 和 虚拟主机的 HTTPS 版本。

现在的问题很简单

确保选择正确的配置文件,具体取决于您是否 选择是否使用 SSL 为 GitLab 提供服务。你唯一需要做的 更改使用您自己的 FQDN,如果您使用 SSL,则 SSL 密钥当前所在的位置。您可能还需要 更改日志文件的位置。YOUR_SERVER_FQDN

要确保 Apache2 版本,请使用
如果使用 HTTPS 版本,您可能需要确保正确部署证书文件,例如,文件的位置与指定的配方文件一致。
apache2 -version