Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Piwigo startup and docs for #614 #713

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions roles/piwigo/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ piwigo_data_directory: "{{ docker_home }}/piwigo/data"
piwigo_photos: "{{ photos_root }}/piwigo"

# uid / gid
piwigo_user_id: "0"
piwigo_group_id: "0"
piwigo_user_id: "1000"
piwigo_group_id: "1000"
piwigo_mysql_user: "piwigo"
piwigo_mysql_password: "piwigo"
piwigo_mysql_root_password: "piwigo"
Expand Down
6 changes: 3 additions & 3 deletions website/docs/applications/other/piwigo.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Optional configurations:
- Set `piwigo_mysql_root_password` in `inventories/<your_inventory>/group_vars/nas.yml` before installing Piwigo, this defaults to "piwigo".

- On first run you'll need to enter database details:
- Host: `db:3306`
- Username: the value of piwigo_mysql_user, defaults to "piwigo"
- Password: the value of piwigo_password, defaults to "piwigo"
- Host: `piwigo-db`
- Username: the value of piwigo_mysql_user, defaults to `piwigo`
- Password: the value of piwigo_password, defaults to `piwigo`
- Database Name: `piwigo`
- Database tables prefix: should be prefilled with `piwigo_`
Loading