Notifications & CLI errors & network port confusion in documentation #93
-
Hi, I followed the doc to install an instance on a debian server. In the console log I find this error for the notifications According to your reply in the discussion of the CORS problem, I want to set up the right URL in the But I'm stuck with the network port configuration, something weird is reported in the doc and I want to look into with you. In the network port page of the docs you write But in the docker-compose.yml you setup the agent config on 5520 port So there is a conflict here, agent and notifications are on the same port. My questions are :
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
@santiagolizardo ping ? |
Beta Was this translation helpful? Give feedback.
-
Hi @psyray ; It's not well documented, but the agent and notifications service are the same, hence you see them with the same port in that example. You can optionally deploy them separately in cases where you want notifications running in one box and agent in another. |
Beta Was this translation helpful? Give feedback.
Hi @psyray ; It's not well documented, but the agent and notifications service are the same, hence you see them with the same port in that example. You can optionally deploy them separately in cases where you want notifications running in one box and agent in another.
Aside of that, the problem you are getting is due to the secure websocket. Because the
SECURE_TRANSPORT_ENABLED
setting is set to true, it tries to usewss://
but you are probably pointing to the service directly. If you were to put it behind an nginx server and terminate the SSL there it would work. I can try to document it to make things simpler.Hope that helps a bit. Thanks