Skip to content
Discussion options

You must be logged in to vote

Okay after rechecking the config and using the examples given from you It seems like the problem was caused by the nginx config ^^

Adding

map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      "";

and changing

  location / {
    proxy_pass http://127.0.0.1:8083;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
  }

  location /notifications/hub {
    proxy_pass http://127.0.0.1:3012;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "upgrade";
   }

  location /notifications/hub/negotiate {
    proxy_pass…

Replies: 5 comments 20 replies

Comment options

You must be logged in to vote
3 replies
@xKugeki
Comment options

@xKugeki
Comment options

@xKugeki
Comment options

Comment options

You must be logged in to vote
3 replies
@xKugeki
Comment options

@BlackDex
Comment options

@xKugeki
Comment options

Comment options

You must be logged in to vote
10 replies
@tessus
Comment options

@xKugeki
Comment options

@tessus
Comment options

@xKugeki
Comment options

@tessus
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
4 replies
@BlackDex
Comment options

@xKugeki
Comment options

@tessus
Comment options

@xKugeki
Comment options

Answer selected by xKugeki
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants