服务器上有nginx frps ,群晖得frpc连接到服务器的 frps,然后用nginx反代,结果白屏
复制代码 |
262235.xyz/hexo/2018/06/04/frp_setup/
|
tcp连接就不行,只能http吗? |
http协议是这样,要是tcp的话,需要在stream段去配置,当然,需要nginx编译的时候–with-stream了。栗子: stream { server { listen 2333; proxy_connect_timeout 3s; proxy_timeout 5s; proxy_pass 192.168.xxx.xxx:10086; } } |