首页
下载
文档
问答社区
视频
捐赠
源代码
AI 助理
赞助商
CRMEB
Apipost
腾讯云
微擎
禅道
51Talk
商业产品
Swoole AI 智能文档翻译器
Swoole-Compiler PHP 代码加密器
CRMEB 新零售社交电商系统
登录
注册
全部
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
发表新帖
nginx转发tcp请求
各位大佬,tcp转发swoole 的 tcp 客户端来的数据怎么操作,按网上的教程一直不行。 tcp服务端一直收不到。 events { use epoll; worker_connections 1024; } stream { log_format proxy '$remote_addr [$time_local] ' '$protocol $status $bytes_sent $bytes_received ' '$session_time "$upstream_addr" ' '"$upstream_bytes_sent" "$upstream_bytes_received" "$upstream_connect_time"'; access_log /var/log/nginx/access_tcp.log proxy ; open_log_file_cache off; upstream backend { hash $remote_addr consistent; server 0.0.0.0:1235 weight=5; } server { listen 12345; proxy_connect_timeout 1s; proxy_timeout 3s; proxy_pass backend; tcp_nodelay on; } } 上面是nginx的配置,看遍全网都是这么配置的,但tcp客户端发消息,经过nginx,tcp服务端收不到啊
发布于4年前 · 3 次浏览 · 来自
提问
C
Caption
各位大佬,tcp转发swoole 的 tcp 客户端来的数据怎么操作,按网上的教程一直不行。 tcp服务端一直收不到。 events { use epoll; worker_connections 1024; } stream { log_format proxy '$remote_addr [$time_local] ' '$protocol $status $bytes_sent $bytes_received ' '$session_time "$upstream_addr" ' '"$upstream_bytes_sent" "$upstream_bytes_received" "$upstream_connect_time"'; access_log /var/log/nginx/access_tcp.log proxy ; open_log_file_cache off; upstream backend { hash $remote_addr consistent; server 0.0.0.0:1235 weight=5; } server { listen 12345; proxy_connect_timeout 1s; proxy_timeout 3s; proxy_pass backend; tcp_nodelay on; } } 上面是nginx的配置,看遍全网都是这么配置的,但tcp客户端发消息,经过nginx,tcp服务端收不到啊
赞
0
分享
收藏
提问
分享
讨论
建议
公告
开发框架
CodeGalaxy
评论
2020-07-18
R
Ray
看最后:https://vsdevelop.com/archives/62
赞
0
回复
微信公众号
热门内容
作者其它话题
- swoole 内存泄露怎么办?trackerHookMalloc 直接爆内存
- 定时器创建成功却不执行是为什么?
- 为什么循环创建的定时器ID不连续
- WARNING swWorker_discard_data (ERRNO 1007): [2] received the wrong data[89 bytes] from socket#5
- 大量的curl是否会导致task任务时间错乱呢?
暂无回复的问答
- CodeGalaxy K3s 轻量集群节点之间如何实现负载均衡
- 关于openssl CURL WARNING swSSL_connect: SSL_connect(fd=69) failed. Error: error:141A318A:SSL routines:tls_process_ske_dhe:dh key too small[1|394]
- 多个模型如何进行事务异常回退?
- websocket开启wss报错
- 协程tcp服务器如何使用多进程?recv()方法接收信息,打印出来的pid一直是同一个。没用使用到多进程啊。