fix(manage-server): remove dead TRITON_MANAGE_JWT_SIGNING_KEY generation/passthrough #23
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
primatekuntech/triton-install!23
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/861-remove-dead-jwt-signing-key"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Issue #600 on
triton(closed 2026-08-07) migrated manage-server admin sessions from JWT-in-localStorage to httpOnly cookies + bcrypt. The source-of-truthscripts/deploy/manage-server/in that repo correctly droppedTRITON_MANAGE_JWT_SIGNING_KEYat the time, but that cleanup was never synced to this distribution repo.Removes the now-dead variable from:
manage-server/install.sh/install.ps1— stop generating and templating the keymanage-server/env.template— drop theSessions/auth (auto-generated)blockmanage-server/compose.yaml— stop passing it into the container (the binary never reads it)manage-server/upgrade.sh/upgrade.ps1— drop the backfill block (also removesupgrade.ps1's now-unusedNew-RandomHexhelper)Bumped
SCRIPT_VERSIONininstall.shandupgrade.sh(the two files that track it).Audited the rest of the repo for other
#600-era JWT-auth references — none found;manage-server/was the only place carrying them.Test plan
bash -noninstall.shandupgrade.shinstall.ps1andupgrade.ps1grep -rn JWT manage-server/returns no matchestritonrepo'sscripts/deploy/manage-server/to confirm the target shape matchesRef: triton#861
6a56646c8cto51800ecc99