chore: replace short JWT_SECRET defaults with ≥32-char value#238
Open
chrip wants to merge 1 commit into
Open
Conversation
The EuroOffice connector v11+ enforces a minimum JWT secret length of
32 characters. Short defaults ("secret", "my_jwt_secret") in example
commands and the orchestrated entrypoint fallback would fail at runtime.
- README.md: update docker run example secret to ≥32 chars
- docker-entrypoint.sh: raise ${JWT_SECRET:=secret} fallback to 35 chars
- example-docker-entrypoint.sh: same
- document-server-integration: bump submodule to apply the same fix
across all integration examples (see Euro-Office/document-server-integration PR)
Assisted-by: ClaudeCode:claude-sonnet-4-6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
Companion PR to Euro-Office/document-server-integration#13. Both PRs must be merged together — this PR bumps the
document-server-integrationsubmodule pointer to the commit in that PR.The EuroOffice connector v11+ enforces a minimum JWT secret length of 32 characters. Short defaults in example commands and the orchestrated entrypoint fallback cause an immediate runtime error: "JWT secret key is too short (minimum 32 characters required)".
What changes
README.md— docker run example secret updated to ≥32 charsbuild/scripts/orchestrated/docker-entrypoint.sh—${JWT_SECRET:=secret}fallback raised to 35 charsbuild/scripts/orchestrated/example-docker-entrypoint.sh— samedocument-server-integration— submodule bumped to chore: replace short JWT_SECRET examples with ≥32-char value document-server-integration#13Assisted-by: ClaudeCode:claude-sonnet-4-6