เรียกใช้ Redmine และ Gitlab บนเซิร์ฟเวอร์ apache ที่ไม่ซ้ำใคร


1

ฉันทำงานในโครงการที่ฉันควรเรียกใช้GitLab และ Redmineพร้อมกันในเครื่องเสมือนเดียวกันโดยใช้ apache2 ฉันเริ่มติดตั้ง omnibus-GitLab (เอกสารที่นี่https://about.gitlab.com/installation/#ubuntu ) และแก้ไข gitlab.rb เพื่อให้สามารถใช้งานได้กับ apache2 (บันทึกไว้ที่นี่https://docs.gitlab.com/ omnibus / settings / nginx.html # using-a-non-บันเดิล - เว็บ - เซิร์ฟเวอร์ ) Gitlab ทำงาน (url = my_ip / gitlab) ก่อนการติดตั้ง Redmine แต่หลังจากการติดตั้งนี้ (มีเอกสารไว้ที่นี่: http://www.redmine.org/projects/redmine/wiki/howto_install_redmine_on_ubuntu_step_by_step) GitLab ส่งคืน 404 (redmine ทำงานได้ดีบน url my_ip / redmine) สิ่งเดียวที่ฉันคิดได้ก็คือ GitLab กำลังทำงานอีกครั้งเมื่อฉันปิดการใช้งาน redmine vhost นี่คือ vhost ของฉัน:

GitLab vhost (ดูที่นี่https://gitlab.com/gitlab-org/gitlab-recipes/tree/master/web-server/apache ):

# 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 /etc/gitlab/gitlab.rb and change the following:
#
# gitlab_workhorse['listen_network'] = "tcp"
# gitlab_workhorse['listen_addr'] = "127.0.0.1:8181"
#
#Module dependencies
# mod_rewrite
# mod_proxy
# mod_proxy_http
<VirtualHost *:80>
  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
  </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 /opt/gitlab/embedded/service/gitlab-rails/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

</VirtualHost>

Redmine vhost (พบที่นี่: http://www.redmine.org/projects/redmine/wiki/howto_install_redmine_on_ubuntu_step_by_step )

<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
        <Directory /var/www/html/redmine>
                RailsBaseURI /redmine
                PassengerResolveSymlinksInDocumentRoot on
        </Directory>
</VirtualHost>

วิธีแก้ปัญหาที่ฉันพยายามที่จะมุ่งเน้นเป็นหนึ่งเดียวและไฟล์ conf รวมทั้ง vhosts

คำตอบ:


2

ไม่มีคำสั่ง VirtualHost ของคุณไม่มีคำServerNameสั่ง สิ่งนี้สำคัญมากเมื่อคุณต้องการทำงานกับโฮสต์เสมือนที่ใช้ชื่อ

ตัวอย่างสำหรับ Gitlab

<VirtualHost *:80>
    ServerName gitlab.example.com
    ...
</VirtualHost>

และสำหรับ Redmine

<VirtualHost *:80>
    ServerName redmine.example.com
    ...
</VirtualHost

ServerNameจะเป็นเช่นเดียวกับโดเมนที่คุณกำลังเชื่อมต่อกับมี หากคุณไม่ได้มีการจับคู่มันจะตรงกับที่มีอยู่ครั้งแรกServerNameVirtualHost

ข้อมูลเพิ่มเติมเกี่ยวกับชื่อโฮสต์เสมือนตามสามารถพบได้ที่https://httpd.apache.org/docs/2.4/vhosts/name-based.html


เหตุผลก็คือ (ขออภัยฉันลืมที่จะพูดถึงมัน) ว่าฉันกำลังทำงานบนเครื่องเสมือนดังนั้นฉันไม่ได้ใช้ชื่อเซิร์ฟเวอร์ แต่ที่อยู่ ip แทน
dAdOuCx

@dAdOuCx เพิ่มไปยัง DNS ของคุณgitlab.example.com A 1.2.3.4 และใช้http://gitlab.example.comเพราะคำตอบนี้ถูกต้องทั้งหมด เหมือนกันกับ redmine
kubanczyk

@dAdOuCx คุณต้องการเชื่อมต่อกับ 2 แอพพลิเคชั่นที่แตกต่างกันผ่าน 1 IP เดียวหรือไม่ คุณจะตัดสินว่าต้องเชื่อมต่อกับ1.2.3.4/gitlabและ1.2.3.4/redmineหรือไม่?
Thorchy

@Thorchy ใช่แน่นอน
dAdOuCx
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.