ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

403 Forbidden after fresh instalation

Added by Krystian Koszufowicz at 2013-01-16 10:19 am

Hi,
I just installed Chiliproject on my Centos 6 box. I followed standard instruction from chiliproject.org.
system on Webbrick works fine. So I tried to run it on apache. I configured host like this:

<VirtualHost *:80>
        ServerName portal
        ServerAlias portal
        DocumentRoot /home/chili/chiliproject/public
        <Directory /home/chili/chiliproject/public>
                AllowOverride all
                Options -MultiViews
        </Directory>
</VirtualHost>

But after httpd restart i got "Forbidden You don't have permission to access / on this server.".
I changed owner of /home/chiliproject/chili to apache:apache but w/o success.

What can I do to make it running?

regards,
Krystian


Replies (2)

RE: 403 Forbidden after fresh instalation - Added by Felix Schäfer at 2013-01-17 08:08 pm

Apache isn't able to run Rails software such as ChiliProject on its own. You could for example use passenger for that, and make sure to follow the Installation instructions.

If you still want to know where this error comes from, have a look at the error log from apache, most of the time it's in /var/log/apache/error.log or similar.

RE: 403 Forbidden after fresh instalation - Added by Krystian Koszufowicz at 2013-01-18 10:22 am

Thanks for reply. I followed installation instructions and installed passenger.
The problem was with the folder rigths. I created chiliproject software in /home/chili folder, but apache hasn't access to that folder. When I fixed rights issue system started w/o any additional problems.

(1-2/2)