我试图建立与Apache2的代理,因此进入的请求http://myipaddress.com去http://localhost:3000/
在那里我有Gitlab(一个Rails应用程序)运行。 以下是我在在Ubuntu 10.04我的Apache配置文件。 我成功地在初始访问gitlab默认页面,但通过点击其他网页后由我进行的任何后续请求去一个404页面未找到。 我可以手动在这些失败的重定向前输入/ 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轨服务的前缀。 我会很感激一些帮助!
ProxyPass /gitlab/ http://localhost:3000/gitlab/
ProxyPassReverse /gitlab/ http://localhost:3000/gitlab/
更新:
由于Friek的评论我已经非常接近解决这个。 下面是我的http.conf文件的一部分。 唯一的问题是,当我打的主页按钮或者它试图重定向到gitlab /这使我从Apache2的基本index.html文件说在gitlab应用标志“它的作品!”。 如何配置这让我简直是/ 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>
我碰到这个主旨是为我工作。 在情况下,它永远打不通了,我会重新发布它。
麒麟配置文件
编辑文件/home/gitlab/gitlab/config/unicorn.rb
行查找听"#{app_dir}/tmp/sockets/gitlab.socket"
和评论它。 取消注释行听"127.0.0.1:8080"
所需的模块的Apache
- 须藤a2enmod代理
- 须藤a2enmod proxy_balancer
- 须藤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>
<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
这是万一有人新遇到这个问题。
这帮助了我,注意到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)代理到麒麟(3000端口)设置的Rails +麒麟。 如果它的使用给其他人的,这是我的配置:
<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>
这个问题也困扰了我相当长的时间。 它现在是固定的。
最有用的资源是从大约Gitlab公文使用-A-非捆绑的Web服务器 。
他们还提供完整可行的配方 。
如果您使用的是Apache 2.4版本或以上,请repectively使用文件gitlab-apache24.conf或gitlab-SSL-apache24.conf HTTP和HTTPS虚拟主机的版本。
如果您使用的是Apache 2.2版,请repectively使用文件gitlab-apache22.conf或gitlab-SSL-apache22.conf HTTP和HTTPS虚拟主机的版本。
现在的问题简单
确保你选择取决于你是否选择服务GitLab用SSL或不正确的配置文件。 您需要更改的唯一事情是YOUR_SERVER_FQDN
用自己的FQDN,如果您使用SSL,你的SSL密钥当前所在的位置。 您可能还需要更改日志文件的位置。
确保Apache2的版本,使用apache2 -version
如果使用HTTPS版本,您可能需要确保您的证书文件被正确部署例如文件放在与指定的配方文件是一致的。