AP_INIT_TAKE1("ProxyVia", set_via_opt, NULL, RSRC_CONF,
"Configure Via: proxy header header to one of: on | off | block | full"),
AP_INIT_FLAG("ProxyErrorOverride", set_proxy_error_override, NULL, RSRC_CONF,
- "use our error handling pages instead of the servers we are proxying"),
+ "use our error handling pages instead of the servers' we are proxying"),
AP_INIT_FLAG("ProxyPreserveHost", set_preserve_host, NULL, RSRC_CONF,
- "on if we shoud preserve host header while proxying"),
+ "on if we should preserve host header while proxying"),
{NULL}
};
long maxfwd;
char maxfwd_set;
/**
- * the following setting masks the error page
+ * the following setting masks the error page
* returned from the 'proxied server' and just
* forwards the status code upwards.
* This allows the main server (us) to generate
len = max;
}
- /* len+1 to leave spave for the trailing nil char */
+ /* len+1 to leave space for the trailing nil char */
apr_cpystrn(ctx->buffer+strlen(ctx->buffer), response, len+1);
APR_BUCKET_REMOVE(e);