through to CGI scripts.
PR: 9163
Submitted by: Brian Reid <breid@customlogic.com>, Zvi Har'El <rl@math.technion.ac.il>
Reviewed by: Joshua Slive, Lars Eilebrecht, Martin Kraemer
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93223
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.32-dev
+ *) suexec: Allow HTTPS and SSL_* environment variables to be passed
+ through to CGI scripts. PR 9163
+ [Brian Reid <breid@customlogic.com>,
+ Zvi Har'El <rl@math.technion.ac.il>]
+
*) binbuild.sh: Make sure that we use the expat from our source
tree so that there aren't any surprises on the target machine.
[Jeff Trawick]
"DOCUMENT_URI",
"FILEPATH_INFO",
"GATEWAY_INTERFACE",
+ "HTTPS",
"LAST_MODIFIED",
"PATH_INFO",
"PATH_TRANSLATED",
cidx++;
for (ep = environ; *ep && cidx < AP_ENVBUF-1; ep++) {
- if (!strncmp(*ep, "HTTP_", 5)) {
+ if (!strncmp(*ep, "HTTP_", 5) || !strncmp(*ep, "SSL_", 4)) {
cleanenv[cidx] = *ep;
cidx++;
}