A cross-platform efficiency tool monitoring, and terminal support for Linux, Win, macOS, even NAS.
10K+
Language : đēđ¸ English | đ¨đŗ įŽäŊ䏿â

The installation tutorial is located in the documentation đ Dockerâ
docker run -d \
-v /proc:/proc \
--privileged=true \
--restart unless-stopped \
--network=host \
--name=serverbee-web \
zingerbee/serverbee-web -p 9527
The following interfaces can only be accessed from localhost
curl http://localhost:9527/local/config
The response is as follows:
{
"success": true,
"data": {
"web_server": {
"port": 9527
},
"server": {
"token": "token",
"host": "serverhub.app",
"disable_ssl": false
},
"app": {
"token": "token"
}
}
}
web_server configRelated configuration of web server, including port number
curl http://localhost:9527/local/config/web_server
The response is as follows:
{
"success": true,
"data": {
"port": 9527
}
}
web_server configurationcurl -X POST -H "Content-Type: application/json" -d '{"port": 9527}' http://127.0.0.1:9527/local/config/web_server
The response is as follows:
{
"success": true
}
app configApp-related configurations, including communication keys
curl http://localhost:9527/local/config/app
The response is as follows:
{
"success": true,
"data": {
"token": "token"
}
}
app configcurl -X POST -H "Content-Type: application/json" -d '{"token": "newToken"}' http://localhost:9527/local/config/app
The response is as follows:
{
"success": true
}
server configServer related configuration, including communication key, server address, whether to disable SSL
curl http://localhost:9527/local/config/server
The response is as follows:
{
"success": true,
"data": {
"token": "token",
"host": "serverhub.app",
"disable_ssl": false
}
}
server configcurl -X POST -H "Content-Type: application/json" -d '{"token": "newToken", "host": "serverhub.app", "disable_ssl": false}' http://127.0.0.1:9527/local/config/server
The response is as follows:
{
"success": true
}
Need to install nodejs, pnpm
pnpm -C view install
pnpm -C view build
The build product is in the view/dist directory
Need to install rust
cargo build --release
and then you can find the binary file in target/release
SEE CHANGELOGâ
Content type
Image
Digest
sha256:266ca1a4bâĻ
Size
10.6 MB
Last updated
over 2 years ago
docker pull zingerbee/serverbee-web