Use the following parameter
Please note that you cannot set the same port for REST API, web interface etc and websocket port. But, if you set up Nginx as reverse proxy, you can use a different URLs on the same port, for example:
Code:
# Websocket
location /wss {
proxy_set_header Host $host;
proxy_pass https://localhost:8443;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
# HTTPS
location / {
proxy_set_header Host $host;
proxy_pass https://localhost:8444;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400;
}
In this case, you can use
https://domain/[ICODE] for REST API queries and [ICODE]https://domain/wss[ICODE] for websocket connections.