CXwudi
CXwudi
你服务端也要配置websocket, https://p4gefau1t.github.io/trojan-go/advance/websocket/
那确保一下CF的websocket转发启用了
只是生怕你不小心关了或者CF现在新网站默认关了websocket
以防万一提醒一下,就你最开始post出来的服务端配置就属于没有设置websocket。如果改了还是不行的话就把你新改的配置放上来看看吧
好吧我才发现你不是原post主, 而且我用的是nginx7层分流, 也就是`http`里的分流, 在https://github.com/p4gefau1t/trojan-go/issues/234#issuecomment-946342401 里我介绍过我自己的配置, 不知道对你有没有帮助
更新: 使用https://github.com/p4gefau1t/trojan-go/issues/362#issuecomment-876403780 里的设置就好了 对于我的问题, 是nginx那边设置有误, 我的`location` 里面的东西设置的不对 以及, 如果在nginx配置里 ``` proxy_ssl_certificate /root/.acme.sh/xxx/fullchain.cer; proxy_ssl_certificate_key /root/.acme.sh/xxx/xxx.key; ``` 这两项使用的是从cloudflare上面签发的证书的话, 依旧会报这个错误, 但连接还是成功的 2021年底更新: 上边的方法依然报错但连接成功的原因只是因为cloudflare签发的证书并不是权威证书, 只对来自cloudflare的连接有效, 把cloudflare证书换成let's encrypt等权威证书, 报错就消失了 =======底下是原评论======= 我也出现了相同的问题 用的是截至现在的最新版trojan-go docker image 服务端:...
Would love to see TornadoFX or JetBrains Compose who first supports GraalVM native image.
> > Would love to see TornadoFX or JetBrains Compose who first supports GraalVM native image. > > What happens when you use Compose? Tbh I haven't tried to migrate...
@dkim19375 I just tried on Compose using a HelloWorld example with Graalvm 17 CE, Native Image can only produce a fallback image, which still requires a JDK to run
@dkim19375 The reason why generating a (non-fallback) native image is hard is because the native image doesn't allow any Java reflection. https://www.graalvm.org/22.0/reference-manual/native-image/Limitations/ > This requires a closed-world assumption, where all...