Skip to content
This repository has been archived by the owner on Oct 6, 2018. It is now read-only.

topic feed do not work over https #61

Open
ediskandarov opened this issue Mar 30, 2015 · 2 comments
Open

topic feed do not work over https #61

ediskandarov opened this issue Mar 30, 2015 · 2 comments

Comments

@ediskandarov
Copy link

subj

@streamnsight
Copy link

i tried replacing ws:// with wss:// in the javascript, and it fixed some of it (zk list etc...) but not the feed or graphs / consumer groups. I get a 400 bad request answer from the server but no error in the logs

@streamnsight
Copy link

I actually found that the problem was due to the need to upgrade the connection in nginx (the proxy I use)

So after upgrading the connection to use websocket

WebSocket support (nginx 1.4)

    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";

and also making sure the load balancer uses IP affinity
server {
ip_hash;
server domain.com:port;
}

i can see the feed.

still no luck with the consumer but i think that is a kafka problem

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants