我正在使用官方手册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
任何想法我做错了什么?