Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/B._Installation/30_backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,5 @@ done
```shell
sudo -s
BORG_PASSPHRASE=s3cr3t-s3cur3-p4ssw0rd bash backup.sh
```
```

6 changes: 3 additions & 3 deletions docs/C._Services/psono.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ aufzusetzen und zu konfigurieren.
services:
postgres:
restart: always
image: postgres:13-alpine
image: postgres:18-alpine
env_file: .postgres.env
environment:
POSTGRES_USER: psono
Expand Down Expand Up @@ -232,7 +232,7 @@ Domains so ohne Probleme verwendet werden und jederzeit auch noch später angepa

### User erstellen
```shell
docker compose exec python3 ./psono/manage.py createuser \
docker compose exec psono-combo python3 ./psono/manage.py createuser \
username@example.com \
myPassword \
email@something.com
Expand All @@ -243,7 +243,7 @@ Jetzt kann der User sich unter https://psono.domain.de/ einloggen.

### User zum Admin erklären
```shell
docker compose exec python3 ./psono/manage.py promoteuser username@example.com superuser
docker compose exec psono-combo python3 ./psono/manage.py promoteuser username@example.com superuser
```

Der Admin Login (mit einem Dashboard, Userverwaltung, etc.) befindet sich unter https://psono.domain.de/portal/
Expand Down
Loading