Skip to content
Merged
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
6 changes: 4 additions & 2 deletions docs/Installation/demo-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,10 @@ A page loading is not the same as a page working. Nextcloud serves its shell bef
Check content instead:

```bash
# The app answers, rather than 404 or an empty shell
curl -s -o /dev/null -w '%{http_code}\n' "http://localhost:8609/apps/dossiq/"
# The app answers. Note the credentials: an app page requires a login, so the
# SAME request without -u returns 401, which is not a broken demo — measured
# on a booted demo while writing this page.
curl -s -o /dev/null -w '%{http_code}\n' -u admin:admin -L "http://localhost:8609/apps/dossiq/"

# OpenRegister has registers — an empty list means the configuration
# was never imported, which is not the same as "nothing configured yet"
Expand Down
Loading