From b458e1cf6db227efe9a747f9feefff36f10b08ec Mon Sep 17 00:00:00 2001 From: Lee Jackson <130007945+Imagineer99@users.noreply.github.com> Date: Tue, 23 Jun 2026 14:11:19 +0100 Subject: [PATCH] Add HTTPS hint to Studio launch message (#6583) --- install.ps1 | 2 ++ install.sh | 2 ++ studio/setup.sh | 1 + 3 files changed, 5 insertions(+) diff --git a/install.ps1 b/install.ps1 index efb54efa2b..745c7369ea 100644 --- a/install.ps1 +++ b/install.ps1 @@ -2595,6 +2595,7 @@ exit 0 step "launch" "to start later, run:" substep "unsloth studio -p 8888" substep "(add -H 0.0.0.0 to allow network / cloud access)" + substep "(add --secure to allow HTTPS)" Write-Host "" } } else { @@ -2615,6 +2616,7 @@ exit 0 substep "unsloth studio -p 8888" } substep "(add -H 0.0.0.0 to allow network / cloud access)" + substep "(add --secure to allow HTTPS)" Write-Host "" } } diff --git a/install.sh b/install.sh index a3b2734dac..62cc2920e6 100755 --- a/install.sh +++ b/install.sh @@ -3160,6 +3160,7 @@ if [ -t 1 ]; then step "launch" "to start later, run:" substep "unsloth studio -p 8888" substep "(add -H 0.0.0.0 to allow network / cloud access)" + substep "(add --secure to allow HTTPS)" echo "" ;; esac @@ -3181,5 +3182,6 @@ else substep "unsloth studio -p 8888" fi substep "(add -H 0.0.0.0 to allow network / cloud access)" + substep "(add --secure to allow HTTPS)" echo "" fi diff --git a/studio/setup.sh b/studio/setup.sh index b5b64a8d4d..e22186319f 100755 --- a/studio/setup.sh +++ b/studio/setup.sh @@ -1822,6 +1822,7 @@ else printf " ${C_DIM}%-15s${C_OK}%s${C_RST}\n" "launch" "unsloth studio -p 8888" fi printf " ${C_DIM}%-15s%s${C_RST}\n" "" "(add -H 0.0.0.0 to allow network / cloud access)" + printf " ${C_DIM}%-15s%s${C_RST}\n" "" "(add --secure to allow HTTPS)" fi echo ""