Kirembu commented on issue #7317:
URL: https://github.com/apache/cloudstack/issues/7317#issuecomment-1483762749

   > > This is also affecting me.
   > > The error I'm getting on the Proxy is 404 "/websockify" Not found
   > > CLOUDSTACK VERSION
   > > `4.17.2.0`
   > > I can't seem to get where that endpoint should be or if there is a 
problem with the console proxy system vm.
   > > Any luck with this issue @troke12 ?
   > 
   > Until now, still same issue
   > 
   > But I think from your issue it's needed to enable websocket by webserver ?
   
   Thank for the response...
   I don't think that's the issue:
   
   I'm using Nginx to proxy the console url and I have added the required web 
socket configs:
   Example:
   
   ```
       location /websockify {
         proxy_pass http://172.16.7.12;
         proxy_http_version 1.1;
         proxy_set_header Upgrade $http_upgrade;
         proxy_set_header Connection "Upgrade";
         proxy_set_header Host $host;
         # Don't disconnect if inactive.
         proxy_read_timeout 600s;
         # Disable caching of VNC stream.
         proxy_buffering off;
       }
   ```
   
   
   But I'm still getting this message:
   
   > 404 Not Found
   > No context found for request
   
   I'm proxying the request to the Console proxy IP Address: [172.16.7.12]
   
   No context found for request


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to