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