심볼릭 링크 아파치 2.4 칠리 프로젝트는 허용되지 않습니다

심볼릭 링크 아파치 2.4 칠리 프로젝트는 허용되지 않습니다

몇 시간 전에 우분투 13.10을 14.04 LTS로 업그레이드했습니다. Rails에서 실행되는 chilliproject 애플리케이션에 한 가지 문제가 있습니다.

chilliproject 애플리케이션에 액세스하려고 하면 오류 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>

왜 실행되지 않는지 모르겠습니다. 승객들은 달리고 있었고 나는 갇혔습니다. 누구든지 나를 도와줄 수 있나요?

관련 정보