几个小时前,我将 ubuntu 13.10 升级到 14.04 LTS。我在 Rails 上运行的 chiliproject 应用程序有 1 个问题。
当我尝试访问 chiliproject 应用程序时,出现错误 403。在 apache2 错误日志中我得到:
Symbolic link not allowed or link target not accesibble /var/www/chili
在我的 apache2 conf 中我得到:
<Directory /var/www/>
Options FollowSymLinks MultiViews SymLinksIfOwnerMatch
AllowOverride All
Require all granted
# Order allow,deny
# allow from all
</Directory>
RailsBaseURI /chili
<Directory /var/www/chili>
AllowOverride all
Options -MultiViews
Require all granted
# Order deny,allow
# Allow from all
</Directory>
我不知道为什么它没有运行。乘客正在奔跑,而我被困住了。有人能帮帮我吗 ?