From 1640a5e21f2d1601bb609a15f07d5bbb6f43ec4d Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Wed, 11 Feb 2026 16:08:45 +0100 Subject: [PATCH] Remove deprecated host and port from example We shouldn't be advertising these if we'd like people to stop using them. --- utils/novnc_proxy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/novnc_proxy b/utils/novnc_proxy index 2f29a772..e1efb9fc 100755 --- a/utils/novnc_proxy +++ b/utils/novnc_proxy @@ -222,9 +222,9 @@ fi echo -e "\n\nNavigate to this URL:\n" if [ "x$SSLONLY" == "x" ]; then - echo -e " http://${HOST}:${PORT}/vnc.html?host=${HOST}&port=${PORT}\n" + echo -e " http://${HOST}:${PORT}/vnc.html\n" else - echo -e " https://${HOST}:${PORT}/vnc.html?host=${HOST}&port=${PORT}\n" + echo -e " https://${HOST}:${PORT}/vnc.html\n" fi echo -e "Press Ctrl-C to exit\n\n"