Clarify Studio --secure hint exposes a public Cloudflare tunnel (#6615)
The installer/setup launch hints described --secure as merely allowing HTTPS. In practice --secure forces a loopback bind and opens a public Cloudflare quick tunnel (https://*.trycloudflare.com) to Studio, which serves Python/terminal tools by default, so the old wording understated the exposure. Update the hint to say it is a public Cloudflare HTTPS link and that anyone with the API key can run code, matching the runtime secure-mode banner.
This commit is contained in:
parent
7a25266203
commit
fad89aecf9
3 changed files with 5 additions and 5 deletions
|
|
@ -2595,7 +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)"
|
||||
substep "(add --secure for a public Cloudflare HTTPS link; anyone with the API key can run code)"
|
||||
Write-Host ""
|
||||
}
|
||||
} else {
|
||||
|
|
@ -2616,7 +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)"
|
||||
substep "(add --secure for a public Cloudflare HTTPS link; anyone with the API key can run code)"
|
||||
Write-Host ""
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3154,7 +3154,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)"
|
||||
substep "(add --secure for a public Cloudflare HTTPS link; anyone with the API key can run code)"
|
||||
echo ""
|
||||
;;
|
||||
esac
|
||||
|
|
@ -3176,6 +3176,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)"
|
||||
substep "(add --secure for a public Cloudflare HTTPS link; anyone with the API key can run code)"
|
||||
echo ""
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -1822,7 +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)"
|
||||
printf " ${C_DIM}%-15s%s${C_RST}\n" "" "(add --secure for a public Cloudflare HTTPS link; anyone with the API key can run code)"
|
||||
fi
|
||||
echo ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue