2

我正在使用官方手册https://github.com/gitlabhq/gitlabhq/blob/stable/doc/install/installation.md安装 Gitlab,但我不想使用 ngix,而是将 apache 与乘客一起使用. 我必须承认我仍然是一个 linux 新手。

无论如何,这是错误:

错误消息:没有这样的文件或目录 - config/environment.rb

这是我的 apache 配置:

ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    RailsBaseURI /gitlab
    RackBaseURI /gitlab
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <Directory /var/www/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride None
            Order allow,deny
            allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
            AllowOverride None
            Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
            Order allow,deny
            Allow from all
    </Directory>
    <Directory /var/www/gitlab>
            Options -MultiViews
    </Directory>


    ErrorLog ${APACHE_LOG_DIR}/error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/access.log combined

任何想法我做错了什么?

4

2 回答 2

1

你不应该在你的配置中有这个:

RailsBaseURI /gitlab
RackBaseURI /gitlab

正如 Phusion Passenger 文档中所解释的,“RailsBaseURI”表示“我在该 URI 下有一个 Rails 2应用程序”。Gitlab 是 Rails 3 应用程序,因此您需要“RackBaseURI”。但是您同时指定了两者,并且“RailsBaseURI”具有优先权,因此 Phusion Passenger 认为 /gitlab 是 Rails 2 应用程序。

摆脱“RailsBaseURI”,你应该没问题。

于 2013-05-06T06:37:43.777 回答
0

嗯很可能是其中之一

DocumentRoot /var/www
RailsBaseURI /gitlab
RackBaseURI /gitlab

只是指向错误的目录。你在哪个目录下查看了 gitlab 代码?它与价值观相符吗?

顺便说一句,我使用与您运行 gitlab (apache+passenger) 几乎相同的设置,并且只设置了 DocumentRoot。

供您参考,这是我的虚拟主机配置,也许它可以帮助您:

<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        ServerName git.your_server_address

        PassengerMinInstances 1
        DocumentRoot /home/gitlab/gitlab/public
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog ${APACHE_LOG_DIR}/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
</VirtualHost>
于 2013-04-28T08:39:08.907 回答