diff options
author | James Moger <james.moger@gitblit.com> | 2011-10-10 19:11:35 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2011-10-10 19:11:35 -0400 |
commit | 70b492b89bdad54abc10795d12f306d8972d94a7 (patch) | |
tree | c26e474aeffd47623c8f83f82de3c356438311e6 /docs/03_faq.mkd | |
parent | 0dccce1b5cffce03124f001ae03b66962f36fee6 (diff) | |
download | gitblit-70b492b89bdad54abc10795d12f306d8972d94a7.tar.gz gitblit-70b492b89bdad54abc10795d12f306d8972d94a7.zip |
Documentation. Updated snapshot to 0.7.0. Merged server.contextPath.
Diffstat (limited to 'docs/03_faq.mkd')
-rw-r--r-- | docs/03_faq.mkd | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/03_faq.mkd b/docs/03_faq.mkd index 12ceada6..f690f266 100644 --- a/docs/03_faq.mkd +++ b/docs/03_faq.mkd @@ -36,12 +36,14 @@ Run the server as *root* (security concern) or change the ports you are serving ### Gitblit WAR will not authenticate any users?!
Confirm that the <context-param> *realm.userService* value in your `web.xml` file actually points to a `users.properties` file.
-### Gitblit won't open my grouped repository (/group/myrepo.git) or browse my branch/tag/ref?!
-This is likely an url encoding/decoding problem related to your servlet container's security. There are two possible workarounds for this issue. In `gitblit.properties` or `web.xml`:
+### Gitblit won't open my grouped repository (/group/myrepo.git) or browse my log/branch/tag/ref?!
+This is likely an url encoding/decoding problem with forward slashes. There are two possible workarounds for this issue. In `gitblit.properties` or `web.xml`:
1. try setting *web.mountParameters* to *false*.<br/>This changes the url scheme from mounted (*/commit/myrepo.git/abcdef*) to parameterized (*/commit/?r=myrepo.git&h=abcdef*).
2. try changing *web.forwardSlashCharacter* to an asterisk or a **!**
+Also, if you are running Gitblit behind a proxy, you must ensure that the proxy does not decode and then re-encode request urls with interpretation of *%2F*. If you are using Apache mod_proxy, specify [AllowEncodedSlashes NoDecode](http://httpd.apache.org/docs/2.2/mod/core.html#allowencodedslashes).
+
## General Interest Questions
### Gitblit? What kind of name is that?
|