docs(academy): add notify_push to local-Nextcloud tutorial#28
Merged
Conversation
OpenRegister's add-live-updates change (PR #1453) and the matching @conduction/nextcloud-vue@1.0.0-beta.4 plugin both rely on notify_push being available. Updating the canonical "Nextcloud lokaal draaien" tutorial so anyone who follows it gets a stack ready for realtime push out of the box, not just polling. Adds: - notify_push service to docker-compose (icewind1991/notify_push:latest, port 7867, depends on db + redis + nextcloud, mounts NC volume RO, reads REDIS_URL + DATABASE_URL + NEXTCLOUD_URL) - New Stap 5 with the five occ config:system:set commands needed to wire NC's Redis cache, mark the Docker subnet as a trusted proxy, and run notify_push:setup - Self-test step with expected check-mark output - Two troubleshooting entries: trusted_proxies subnet mismatch, and the "No redis server is configured" restart loop Outcomes section now mentions notify_push as the realtime channel.
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.
Summary
OpenRegister's add-live-updates change and the matching `@conduction/nextcloud-vue@1.0.0-beta.4` plugin both rely on `notify_push` being available. The default "Nextcloud lokaal draaien" tutorial currently shows a 3-service compose (db + redis + nextcloud), so anyone following it ends up on polling.
This PR brings the tutorial up to par by adding the `notify_push` Rust sidecar and the one-time `occ` setup steps so the stack is push-ready out of the box.
Changes
Verification
I ran every command in this PR against a fresh local stack today; `notify_push:self-test` passes all six checks (expected `unencrypted http` warning aside).
Related