This is a web based control panel for Hiqnet Devices that compiles the AudioArchitect .panel format into a nextjs component. It has build in user management It communicates using a python based websocket server that speaks to HiQnet devices, e.g. SoundWeb Blue Units
docker-compose.yml
version: '3'
services:
soundweb-control:
image: quphoria/soundweb-control
ports:
- "3000:3000/tcp"
volumes:
- ./data:/data
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "1"
restart: unless-stopped
hiqnet-websocket-proxy:
image: quphoria/hiqnet-websocket-proxy
ports:
- "8765:8765/tcp"
volumes:
- ./data/backend:/app/config
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "1"
restart: unless-stopped
docker-compose.yml into the installation directorydata inside the installation directorydata directory and name it App.paneldocker compose -p soundweb-control up -ddata directoryws://, e.g. 192.168.1.1:8765 (8765 is the default port)useSSL to true (an exteral proxy server (e.g. Nginx) will have to be used to handle https traffic and proxy request to the nodejs server)Edit data/backend-config.json
Copy in the secret value for the auth token HMAC from the panel config, otherwise the websocket will be unable to connect.
Enter the ip address of the main HiQnet device to handle control messages inside the default node
Add additional nodes for other HiQnet devices with their Node ID in hex as the name, DO THIS FOR EVERY SOUNDWEB DEVICE
If you do not add all the nodes in this config file, you could cause SoundWeb devices to freeze and crash.
Example config:
{
"authTokenSecret": "authTokenSecret from configuring the panel",
"nodes": {
"default": "192.168.1.2",
"0x1": "192.168.1.2",
"0x2": "192.168.1.3",
"0x3": "192.168.1.4"
},
"subscription_rate_ms": 100,
"websocket_port": 8765,
"authTokenSecret"
}
The subscription rate should be left at 100ms, but can be increased if the subscription rate is a bit too fast causing devices to seem laggy
Leave the websocket port at 8765, change this port inside docker-compose.yml
If the admin account password is forgotten the user database can be manually edited or reset
The user database is users.json
If you want to reset the user database, you just need to delete users.json and restart the NodeJS server
The default login is admin admin
Please read the EULA here: https://github.com/Quphoria/SoundWeb-Control/blob/master/EULA.md
The icon file (favicon.ico) is by GuillenDesign (Paulo Guillen)
Licensed under CC Attribution-NonCommercial-NoDerivs
From: https://icon-icons.com/icon/control-panel/43465
Content type
Image
Digest
sha256:7c9724948…
Size
52.2 MB
Last updated
9 months ago
docker pull quphoria/soundweb-control