运行 一台 apache 服务器上的两个网站
Running two websites on one apache server
我是运行Ubuntu16.04 LTS作为服务器,在上面安装了GitLab和OpenProject。但是,由于我安装了 GitLab,我无法再访问我的 OpenProject,我尝试使用 apache2 配置将它转发到不同的端口,但它不起作用。
/etc/apache2/sites-available/000-default.conf:
# 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 or create /etc/default/gitlab and change or add the following:
#
# gitlab_workhorse_options="-listenUmask 0 -listenNetwork tcp -listenAddr 127.0.0.1:8181 -authBackend http://127.0.0.1:8080"
#
#Module dependencies
# mod_rewrite
# mod_proxy
# mod_proxy_http
<VirtualHost *:80>
ServerName YOUR_SERVER_FQDN
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
<Location />
# 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://YOUR_SERVER_FQDN/
</Location>
# Apache equivalent of nginx try files
# http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files
#
RewriteEngine on
#Forward all requests to gitlab-workhorse except existing files like error documents
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_URI} ^/uploads/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
# 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 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
ErrorLog /var/log/httpd/logs/YOUR_SERVER_FQDN_error.log
CustomLog /var/log/httpd/logs/YOUR_SERVER_FQDN_forwarded.log common_forwarded
CustomLog /var/log/httpd/logs/YOUR_SERVER_FQDN_access.log combined env=!dontlog
CustomLog /var/log/httpd/logs/YOUR_SERVER_FQDN.log combined
</VirtualHost>
<VirtualHost *:81>
ServerName euve252630.serverprofi24.de
DocumentRoot /opt/openproject/public
Include /etc/apache2/sites-available/openproject.conf
</VirtualHost>
/etc/apache2/sites-available/openproject.conf:
Include /etc/openproject/addons/apache2/includes/server/*.conf
<VirtualHost *:81>
ServerName euve252630.serverprofi24.de
DocumentRoot /opt/openproject/public
ProxyRequests off
Include /etc/openproject/addons/apache2/includes/vhost/*.conf
# Can't use Location block since it would overshadow all the other proxypass directives on CentOS
ProxyPass /openproject/ http://127.0.0.1:6000/openproject/ retry=0
ProxyPassReverse /openproject/ http://127.0.0.1:6000/openproject/
</VirtualHost>
/etc/apache2/ports.conf:
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 80
Listen 81
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
我不知道我还能做什么,提前致谢!
注意:我想在端口 80 上使用 GitLab,在端口 81 上使用 OpenProject
编辑:两者都是运行,这只是配置问题
EIDT:找到导致网站未显示的原因。 Nginx 服务器默认为 运行 来自 gitlab bundle
如果你想访问这两个项目,应该很简单,只需将两个项目作为 apache 的 webapps 文件夹下的 2 个单独文件夹,然后通过文件夹名称访问它们(localhost:8080/)
Gitlab 默认是 运行 Nginx 服务器,禁用它以便 apache 工作
我也遇到了同样的问题。我更改了 gitlab 端口并重新启动 gitlab 和 apache2 服务器 gitlab 在端口号 99 上工作并确保 openproject 安装将 ssl.
gitlab working on : http://ip:99/users/sign_in
openproject working on : https://ip/openproject
步骤:
1. sudo vi /etc/gitlab/gitlab.rb
2. change port number : external_url "http://IP:99"
3. sudo gitlab-ctl reconfigure
4. sudo gitlab-ctl restart
5. sudo service apache2 restart
我是运行Ubuntu16.04 LTS作为服务器,在上面安装了GitLab和OpenProject。但是,由于我安装了 GitLab,我无法再访问我的 OpenProject,我尝试使用 apache2 配置将它转发到不同的端口,但它不起作用。
/etc/apache2/sites-available/000-default.conf:
# 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 or create /etc/default/gitlab and change or add the following:
#
# gitlab_workhorse_options="-listenUmask 0 -listenNetwork tcp -listenAddr 127.0.0.1:8181 -authBackend http://127.0.0.1:8080"
#
#Module dependencies
# mod_rewrite
# mod_proxy
# mod_proxy_http
<VirtualHost *:80>
ServerName YOUR_SERVER_FQDN
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
<Location />
# 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://YOUR_SERVER_FQDN/
</Location>
# Apache equivalent of nginx try files
# http://serverfault.com/questions/290784/what-is-apaches-equivalent-of-nginxs-try-files
#
RewriteEngine on
#Forward all requests to gitlab-workhorse except existing files like error documents
RewriteCond %{DOCUMENT_ROOT}/%{REQUEST_FILENAME} !-f [OR]
RewriteCond %{REQUEST_URI} ^/uploads/.*
RewriteRule .* http://127.0.0.1:8181%{REQUEST_URI} [P,QSA,NE]
# 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 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
ErrorLog /var/log/httpd/logs/YOUR_SERVER_FQDN_error.log
CustomLog /var/log/httpd/logs/YOUR_SERVER_FQDN_forwarded.log common_forwarded
CustomLog /var/log/httpd/logs/YOUR_SERVER_FQDN_access.log combined env=!dontlog
CustomLog /var/log/httpd/logs/YOUR_SERVER_FQDN.log combined
</VirtualHost>
<VirtualHost *:81>
ServerName euve252630.serverprofi24.de
DocumentRoot /opt/openproject/public
Include /etc/apache2/sites-available/openproject.conf
</VirtualHost>
/etc/apache2/sites-available/openproject.conf:
Include /etc/openproject/addons/apache2/includes/server/*.conf
<VirtualHost *:81>
ServerName euve252630.serverprofi24.de
DocumentRoot /opt/openproject/public
ProxyRequests off
Include /etc/openproject/addons/apache2/includes/vhost/*.conf
# Can't use Location block since it would overshadow all the other proxypass directives on CentOS
ProxyPass /openproject/ http://127.0.0.1:6000/openproject/ retry=0
ProxyPassReverse /openproject/ http://127.0.0.1:6000/openproject/
</VirtualHost>
/etc/apache2/ports.conf:
# If you just change the port or add more ports here, you will likely also
# have to change the VirtualHost statement in
# /etc/apache2/sites-enabled/000-default.conf
Listen 80
Listen 81
<IfModule ssl_module>
Listen 443
</IfModule>
<IfModule mod_gnutls.c>
Listen 443
</IfModule>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
我不知道我还能做什么,提前致谢!
注意:我想在端口 80 上使用 GitLab,在端口 81 上使用 OpenProject
编辑:两者都是运行,这只是配置问题 EIDT:找到导致网站未显示的原因。 Nginx 服务器默认为 运行 来自 gitlab bundle
如果你想访问这两个项目,应该很简单,只需将两个项目作为 apache 的 webapps 文件夹下的 2 个单独文件夹,然后通过文件夹名称访问它们(localhost:8080/)
Gitlab 默认是 运行 Nginx 服务器,禁用它以便 apache 工作
我也遇到了同样的问题。我更改了 gitlab 端口并重新启动 gitlab 和 apache2 服务器 gitlab 在端口号 99 上工作并确保 openproject 安装将 ssl.
gitlab working on : http://ip:99/users/sign_in
openproject working on : https://ip/openproject
步骤:
1. sudo vi /etc/gitlab/gitlab.rb
2. change port number : external_url "http://IP:99"
3. sudo gitlab-ctl reconfigure
4. sudo gitlab-ctl restart
5. sudo service apache2 restart