From: Jim Jagielski Date: Thu, 21 Jun 2018 13:28:51 +0000 (+0000) Subject: Add default schema ports for websockets X-Git-Tag: 2.5.0-alpha2-ci-test-only~2546 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9121d9c800bf69b754d9fbbcbe7c26bf15d624be;p=thirdparty%2Fapache%2Fhttpd.git Add default schema ports for websockets PR:62480 Lubos Uhliarik git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1834012 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 305bd1f6bad..e8eecb20709 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -3919,6 +3919,8 @@ static proxy_schemes_t pschemes[] = {"scgi", SCGI_DEF_PORT}, {"h2c", DEFAULT_HTTP_PORT}, {"h2", DEFAULT_HTTPS_PORT}, + {"ws", DEFAULT_HTTP_PORT}, + {"wss", DEFAULT_HTTPS_PORT}, { NULL, 0xFFFF } /* unknown port */ };