•  
      request #6406 Upgrade to 6.11 on Centos 6 block git web access
    Infos
    #6406
    Manuel Vacelet (vaceletm)
    2014-06-12 17:17
    2014-03-06 16:57
    6480
    Details
    Upgrade to 6.11 on Centos 6 block git web access
    Apache is different form centos5 and is not happy with presence of .htaccess
    [Thu Mar 06 15:52:58 2014] [error] [client 31.35.45.30] Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden: /usr/share/tuleap/plugins/git/www/, referer: https://c6.valid.enalean.com/project/admin/servicebar.php?group_id=105
    SCM/Git
    6.11
    CentOS 6
    • [ ] enhancement
    • [ ] internal improvement
    Thomas Cottier (tcottier)
    Stage
    Manuel Vacelet (vaceletm)
    Closed
    Empty
    Attachments
    Empty
    References

    Follow-ups

    User avatar

    As a temporary fix, you should apply the "git nice URLs" procedure:


    * Modify your /etc/httpd/conf.d/codendi_aliases.conf file and replace:

        <DirectoryMatch "/usr/share/codendi/plugins/([^/]*)/www/">
            Options MultiViews
            AllowOverride None
            Order allow,deny
            Allow from all
        </DirectoryMatch>

    by

        <Directory "/usr/share/codendi/plugins/*/www/">
            Options MultiViews FollowSymlinks
            AllowOverride All
            Order allow,deny
            Allow from all
        </Directory>

    in the "plugins" section.

    * Restart your httpd service with `service httpd restart`


    • CC list set to Thomas Cottier (tcottier)