문제

I'm trying to install Edgewall's Trac ticket system on an Ubuntu 14.04 Server, with Apache2 and mod_wsgi. I have followed the instructions given here: https://help.ubuntu.com/community/TracApacheModWsgi But after point 9, when i try to view the page, it says:

Forbidden You don't have permission to access /trac on this server.

What could be the cause?

도움이 되었습니까?

해결책

In step 6 of the referenced instruction, place line Require all granted before the closing tag </Directory>. This is required in order to access directories outside of the default document root.

Please note that under Ubuntu 14.04 you might get a python babel package error that is related to missing "en_US" locale. It can be easily fixed:

sudo apt-get install --reinstall python-babel-localedata 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top