diff options
author | Rob Crittenden <rcritten@redhat.com> | 2015-06-10 18:01:45 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2015-06-10 18:02:17 -0400 |
commit | a62526d425dcbeaa1486cf685c2927afa0459e1d (patch) | |
tree | 2898f59fbdc2cf7cd9f5184706d7cc05b12df4bb /mod_nss.c | |
parent | cc9794ee5309782b5df1b782aa2e15bbd5068612 (diff) | |
download | mod_nss-a62526d425dcbeaa1486cf685c2927afa0459e1d.tar.gz mod_nss-a62526d425dcbeaa1486cf685c2927afa0459e1d.tar.xz mod_nss-a62526d425dcbeaa1486cf685c2927afa0459e1d.zip |
Add RenegBufferSize option
Control the buffer size used on a POST when SSL renegotiation is
being done. The default is 128K.
Resolves BZ 1214366
Diffstat (limited to 'mod_nss.c')
-rw-r--r-- | mod_nss.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -127,6 +127,11 @@ static const command_rec nss_config_cmds[] = { SSL_CMD_DIR(Require, AUTHCFG, RAW_ARGS, "Require a boolean expression to evaluate to true for granting access" "(arbitrary complex boolean expression - see manual)") + SSL_CMD_DIR(RenegBufferSize, AUTHCFG, TAKE1, + "Configure the amount of memory that will be used for buffering the " + "request body if a per-location SSL renegotiation is required due to " + "changed access control requirements") + /* * Proxy configuration for remote SSL connections */ |