(as documented but not implemented). PR 46066 [Dan Poirier <poirier pobox.com>]
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@727477
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.1
[ When backported to 2.2.x, remove entry from this file ]
+ *) Set Listen protocol to "https" if port is set to 443 and no proto is specified
+ (as documented but not implemented). PR 46066 [Dan Poirier <poirier pobox.com>]
+
*) Output -M and -S dumps (modules and vhosts) to stdout instead of stderr.
PR 42571 and PR 44266 (dup). [Dan Poirier <poirier pobox.com>]
}
if (argc != 2) {
- proto = "http";
+ if (port == 443) {
+ proto = "https";
+ } else {
+ proto = "http";
+ }
}
else {
proto = apr_pstrdup(cmd->pool, argv[1]);