diff options
author | Jim Jagielski <jim@apache.org> | 2018-06-21 15:28:51 +0200 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2018-06-21 15:28:51 +0200 |
commit | 9121d9c800bf69b754d9fbbcbe7c26bf15d624be (patch) | |
tree | 1a2a0eb47cf65bd319cc0ad99c17f25c3b625049 /modules | |
parent | documentation rebuild (diff) | |
download | apache2-9121d9c800bf69b754d9fbbcbe7c26bf15d624be.tar.xz apache2-9121d9c800bf69b754d9fbbcbe7c26bf15d624be.zip |
Add default schema ports for websockets
PR:62480
Lubos Uhliarik <luhliari@redhat.com>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1834012 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/proxy/proxy_util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 305bd1f6ba..e8eecb2070 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 */ }; |