I used docker compose to start the backend on my Macbook.
Configured by copying .env.arm64.example and setting GLKVM_ACCESS_IP=192.168.8.147.
On https://localhost/#/device, the generated connection script is
#!/bin/sh
HOSTNAME="localhost"
PORT=":5912"
...
On https://127.0.0.1/#/device, the script is:
#!/bin/sh
HOSTNAME="192.168.8.147"
PORT=":5912"
...
This holds for all 4 occurrences of this hostname in the script.
I used docker compose to start the backend on my Macbook.
Configured by copying .env.arm64.example and setting
GLKVM_ACCESS_IP=192.168.8.147.On https://localhost/#/device, the generated connection script is
On https://127.0.0.1/#/device, the script is:
This holds for all 4 occurrences of this hostname in the script.