gitblit
gitblit copied to clipboard
Update FAQ with additional mod_proxy and apache configuration
I'm running gitblit behind mod_proxy and the only way, how it can work without web.mountParameters=false is not to set AllowEncodedSlashes NoDecode but to do this configuration
AllowEncodedSlashes On
ProxyPass / http://myserver:1279/ nocanon
Pay attention at the nocanon keyword. This solves all issues to me.
(credits http://www.scriptscoop.net/t/47d5a8734320/cant-get-mod-proxy-to-correctly-forward-encoded-slash-characters-2f.html)
Can you please update at least the FAQ or the prefered configuration in Running Gitblit behind Apache
I'm using Apache 2.4.18 and Gitblit 1.7.2
The documentation is in src/site. PRs are welcome.