weizhouapache commented on issue #7317:
URL: https://github.com/apache/cloudstack/issues/7317#issuecomment-1492295761
@troke12
1. You must upload SSL certificate, and restart mgmt server/CPVM.
2. update the 443 part to the following (the setting for websocket is not
needed)
```
location / {
proxy_pass https://172.16.25.31;
}
```
3. update the 8080 part to
```
location /websockify {
proxy_pass https://172.16.25.31/websockify;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
}
```
--
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]