updates: nextcloud refactor to apache image instead of nginx

This commit is contained in:
2024-06-30 18:54:15 -07:00
parent 97d1db61d8
commit 97b812eb10
7 changed files with 39 additions and 209 deletions

View File

@@ -45,3 +45,15 @@ password hashes. This can be done by running the following command:
```bash
docker compose exec -it <db_service> psql -U <db_user> -c "\password"
```
## Nextcloud
Nextcloud requires some additional work to set up notify_push.
- Initially, comment out the notify_push service in the docker compose.
- Set up nextcloud and install the Client Push (notify_push) app.
- Uncomment the notify_push service in the docker compose and `up -d` the stack.
- ```bash
docker compose exec app ./occ notify_push:setup https://nc.<domain>/push
```
I should probably get around to automating this at some point.