登录
首页 >  Golang >  Go问答

在 Apache mod_proxy_wstunnel 后面使用 go-websocket

来源:Golang技术栈

时间:2023-04-04 21:14:26 244浏览 收藏

Golang不知道大家是否熟悉?今天我将给大家介绍《在 Apache mod_proxy_wstunnel 后面使用 go-websocket》,这篇文章主要会讲到golang等等知识点,如果你在看完本篇文章后,有更好的建议或者发现哪里有问题,希望大家都能积极评论指出,谢谢!希望我们能一起加油进步!

问题内容

注意:更新了配置并在 websocket 路径中添加了斜杠。 还是一样的问题

是否可以在带有mod_proxy_wstunnel的 Apache 反向代理后面使用[go- websocket](https://github.com/garyburd/go- websocket)?

我尝试过但未能使事情正常进行。

我尝试在 Apache 反向代理后面使用[Chat 示例](https://github.com/garyburd/go- websocket/tree/master/examples/chat)(启用了mod_proxy_wstunnel )。它不起作用。代理是成功的,而 websocket 部分根本不起作用。

我的 Apache 配置与此类似:


    DocumentRoot /var/www/foobar
    ServerName foobar.com
    ProxyPass / http://localhost:8080/
    ProxyPassReverse / http://localhost:8080/
    ProxyPass /ws/ ws://localhost:8080/ws/
    ProxyPassReverse /ws/ ws://localhost:8080/ws/
    ErrorLog logs/error_log-foobar
    CustomLog logs/access_log-foobar common
    LogLevel debug

当然,我正在端口 8080 上运行聊天服务器。我已经使用 SSH 隧道对其进行了测试,并且一切正常。然后我转向 Apache。

我第一次尝试时,javascript控制台抱怨:

NetworkError: 403 Forbidden - http://foobar.com/ws/

该请求似乎停留在原点检查中。然后我在注释掉原点检查后再次尝试,它得到了这个:

NetworkError: 400 Bad Request - http://foobar.com/ws/

聊天服务器似乎根本没有收到升级请求。

我应该如何调试这个?我应该从哪里开始寻找?

正确答案

我在 CentOS 7 上使用 Apache 2.4.18 后面的 Go 安全 WebSocket (wss://) 服务器。以下是设置:

确保系统有 mod_proxy_wstunnel:

查找 /usr/lib64/httpd/modules/ | grep ws

/usr/lib64/httpd/modules/mod_proxy_wstunnel.so

在 00-proxy.conf 中添加以下行:

vim /etc/httpd/conf.modules.d/00-proxy.conf

LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so

重启阿帕奇:

systemctl 重启 httpd

检查设置:

httpd -M | grep -iE '代理'

 proxy_module (shared)
 proxy_fcgi_module (shared)
 proxy_http_module (shared)
 proxy_wstunnel_module (shared)

编辑 httpd-vhosts.conf:

vim /etc/httpd/conf.d/httpd-vhosts.conf


    ServerName go.mydomain.com:443

    ProxyPreserveHost On
    ProxyRequests off

    SSLProxyEngine On
    SSLCertificateFile "/etc/pki/tls/certs/mydomain.com/mydomain.crt"
    SSLCertificateKeyFile "/etc/pki/tls/certs/mydomain.com/mydomain.key"

    ### The configured ProxyPass and ProxyPassMatch rules are checked
    ### in the order of configuration. The first rule that matches wins.
    ProxyPassMatch ^/(ws(/.*)?)$ wss://192.168.0.1:443/$1

    ProxyPass / https://192.168.0.1:443/
    ProxyPassReverse / https://192.168.0.1:443/

    ErrorLog "/var/log/httpd/go.mydomain.com-error_log"
    CustomLog "/var/log/httpd/go.mydomain.com-access_log" common

    ServerName go.mydomain.com:80

    ProxyPreserveHost On
    ProxyRequests off

    ###
    ProxyPassMatch ^/(ws(/.*)?)$ ws://192.168.0.1:80/$1

    ProxyPass / http://192.168.0.1:80/
    ProxyPassReverse / http://192.168.0.1:80/

    ErrorLog "/var/log/httpd/go.mydomain.com-error_log"
    CustomLog "/var/log/httpd/go.mydomain.com-access_log" common

今天关于《在 Apache mod_proxy_wstunnel 后面使用 go-websocket》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表