summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-02-20 18:38:14 -0800
committerShawn O. Pearce <sop@google.com>2009-02-20 19:46:15 -0800
commit4246f380f93f6306f59d3e643d0c0c67b8777102 (patch)
tree92377daa04a4bb3bf45b813880bb27dc52924b52
parent0004f98c9d3d30b07ecbb40c3debf3b23d7144ae (diff)
Add a note about CA Siteminder long headers and Jetty
I've heard from some users running Siteminder that the header length on some of their cookies is longer than what Jetty can accept by default. Upping the limit seems to fix their problem, so suggest it in the docs. Signed-off-by: Shawn O. Pearce <sop@google.com>
-rw-r--r--Documentation/config-sso.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/config-sso.txt b/Documentation/config-sso.txt
index 46bdbc8f35..57e4b47008 100644
--- a/Documentation/config-sso.txt
+++ b/Documentation/config-sso.txt
@@ -147,6 +147,14 @@ example would be typical, to add the domain name of the organization.
If Apache HTTPd is being used, see the section above to configure
the `/ssh_info` URL to be available to `repo upload`.
+If Jetty is being used, you may need to increase the header buffer
+size parameter, due to very long header lines. Add the following
+to `jetty.xml` under `org.mortbay.jetty.nio.SelectChannelConnector`:
+
+====
+ <Set name="headerBufferSize">16384</Set>
+====
+
Database Schema
~~~~~~~~~~~~~~~