提问人:PhilBot 提问时间:6/9/2012 最后编辑:PhilBot 更新时间:6/13/2018 访问量:23665
Apache2 ProxyPass for Rails 应用程序 Gitlab
Apache2 ProxyPass for Rails App Gitlab
问:
我正在尝试使用 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>
答:
<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
我遇到了这个对我有用的要点。如果它死了,我会重新发布它。
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>
评论
这是为了防止新人遇到这个问题。
这帮助了我,注意到 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)
我在谷歌上搜索我在使用 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>
这个问题也困扰了我很长时间。现在已修复。
最有用的资源来自 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
评论
<rails_app_path>/public