Add optional VersityGW WebGUI support

Prompt the user during install to enable the beta VersityGW WebGUI and, if accepted, append VGW_WEBUI_PORT=:7071 and VGW_WEBUI_NO_TLS=true to /etc/versitygw.d/gateway.conf. Update the installer to report that the WebGUI will be enabled and modify the completion script to display the WebGUI URL (http://<IP>:7071) when the config contains VGW_WEBUI_PORT. Keeps existing access/key generation and default gateway port unchanged.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-20 13:58:57 +01:00
parent 97b44d8a26
commit 70914c20a2
2 changed files with 15 additions and 0 deletions

View File

@@ -52,3 +52,6 @@ msg_ok "Completed Successfully!\n"
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
echo -e "${INFO}${YW} Access it using the following URL:${CL}"
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7070${CL}"
if grep -qs 'VGW_WEBUI_PORT' /etc/versitygw.d/gateway.conf 2>/dev/null; then
echo -e "${TAB}${GATEWAY}${BGN}http://${IP}:7071${CL} (WebGUI)"
fi