From a21f901a1ac66b08b7275fab138624fe6791e52a Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Fri, 20 Mar 2026 14:32:31 +0100 Subject: [PATCH] fix(versitygw): add colon prefix to VGW_PORT (:7070) --- install/versitygw-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/versitygw-install.sh b/install/versitygw-install.sh index 3fafd298..b0d572a0 100644 --- a/install/versitygw-install.sh +++ b/install/versitygw-install.sh @@ -30,7 +30,7 @@ SECRET_KEY=$(openssl rand -base64 36 | tr -dc 'a-zA-Z0-9' | cut -c1-40) cat </etc/versitygw.d/gateway.conf VGW_BACKEND=posix VGW_BACKEND_ARG=/opt/versitygw-data -VGW_PORT=7070 +VGW_PORT=:7070 ROOT_ACCESS_KEY_ID=${ACCESS_KEY} ROOT_SECRET_ACCESS_KEY=${SECRET_KEY} EOF