在一台Apache服务器上运行两个网站

时间:2017-02-12 19:19:33

标签: apache ubuntu gitlab vhosts openproject

我正在运行Ubuntu 16.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
  # http://stackoverflow.com/questions/10954516/apache2-proxypass-for-rails-app-gitlab
  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

运行

3 个答案:

答案 0 :(得分:0)

如果你想访问这两个项目,它应该像在apache的webapps文件夹下将两个项目作为2个单独的文件夹一样简单,并通过文件夹的名称访问它们(localhost:8080 /)

答案 1 :(得分:0)

Gitlab默认运行Nginx服务器,禁用它以便apache工作

答案 2 :(得分:0)

我也遇到同样的问题。我更改了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