chungthuang
chungthuang
I've tested SSE works with our hello-world server https://github.com/cloudflare/cloudflared/blob/master/hello/hello.go#L190. Can you share another simple server I can test with?
Hi @andreqts thank you for trying our service. The `websocket: bad handshake` usually means an error in how cloudflared connects to your origin. It will be helpful to know your...
Hi @RTodorov I recommend using named tunnel and ingress rules. First follow https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/create-tunnel to create a tunnel. Then in your config file, add the following ``` tunnel: credentials-file: ingress: -...
I'm sorry to hear that. Can you try replacing the scheme in `tcp://127.0.0.1:6443` to `http`? That will tell cloudflared to connect to `127.0.0.1:6443` over http instead of tcp.
I would try with changing your ingress to `service: https://127.0.0.1:6443`. The TLS handshake will be between cloudflared and your origin, but not between your end user and your origin. If...
What is the cloudflared version on the client side? Can you try logging at debug level? I would expect a 101 response in the tunnel log if the client request...
@joaocc do you have autoupdate enabled? The autoupdate feature doesn't work in container environment because it creates a new process.
Hi @tomaswarynyca, I tried the command with the latest image and it worked for me. Can you try ``` docker run -v ~/.cloudflared:/etc/cloudflared cloudflare/cloudflared:2021.2.5 tunnel --no-autoupdate --hostname example.com --url http://localhost:8080...
The command assumes you have a `cert.pem` file in `~/.cloudflared/cert.pem`. If you don't have this file, check out https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/setup.
`~` is equivalent to `$HOME`, so `~/.cloudflared:/etc/cloudflared` is equivalent to `$HOME/.cloudflared:/etc/cloudflared`. In your case you cert is at `.cloudflared/cert.pem`, so you can run ``` docker run --rm -v .cloudflared:/etc/cloudflared cloudflare/cloudflared:2021.2.5...