Gitlab with resque behind apache proxy: forbidden
Created by: ghost
I have searched through the issues, but found no solution. I have set up gitlab according to instructions here: https://github.com/gitlabhq/gitlabhq/blob/stable/doc/installation.md on debian squeeze. I've used port 8080 for nginx, since it's an aegir box. When accessing the web interface through port 8080, everything works fine, but since i like to make it easy for our developers, i've set up an additional vhost on apache that has set up the proxy so gitlab is accessible on port 80.
vhost: <VirtualHost *:80>
ServerName gitlab.inceptum.eu
ProxyRequests Off <Proxy *> Order allow,deny Allow from all #ProxyPreserveHost on
ProxyPass / http://gitlab.inceptum.eu:8080/ ProxyPassReverse / http://gitlab.inceptum.eu:8080/
When accessing gitlab on port 80, everything works, except for the resque page, which shows forbidden. Which directive could I add to my apache vhost to solve this?