Question concerning the reverse proxy, SSL or not ? #2259
-
|
Hi, I apologize for asking this, but I'm having trouble understanding. Is it possible to set up a reverse proxy without SSL? I find the documentation unclear, as all command lines seem to specify "wss" rather than "ws". However, from what I read in the code, it seems possible to handle it without SSL. I skipped the SSL verification using environment variables. Here is the documentation: IBM Context Forge - Reverse Proxy I apologize if I missed something obvious. Thanks a lot! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
|
Hey @0xAttra, yes you can set up a reverse proxy without SSL. You can see this conversion in the I hope this helps, if you've any other questions just ask. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @0xAttra, sorry you still see the catalog issue. Could you share exact /servers response, gateway startup config (REVERSE_PROXY + WS/SSE flags), and any gateway logs around registration/list calls? I can check this path and update the docs with a concrete fix. |
Beta Was this translation helpful? Give feedback.
Hey @0xAttra, yes you can set up a reverse proxy without SSL.
If you use
http://it will default convert the websocket to usews://and if you usehttps://it will default the websocket connection to usewss://.You can see this conversion in the
mcpgateway.reverse_proxy._connect_websocketfunction: https://github.com/IBM/mcp-context-forge/blob/main/mcpgateway/reverse_proxy.py#L350I hope this helps, if you've any other questions just ask.
Thanks,
Brian