From 6f74d4c56c6645562b0bb60c3e8f998c8f77dc21 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Wed, 17 Sep 2025 00:55:27 +0200 Subject: [PATCH] docs: fix typos in forgejo documentation --- modules/services/forgejo/docs/default.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/services/forgejo/docs/default.md b/modules/services/forgejo/docs/default.md index fd744bb..2416b90 100644 --- a/modules/services/forgejo/docs/default.md +++ b/modules/services/forgejo/docs/default.md @@ -34,20 +34,20 @@ shb.forgejo = { "theadmin" = { isAdmin = true; email = "theadmin@example.com"; - password.result = config.shb.hardcodedsecret.forgejoAdminPassword.result; + password.result = config.shb.sops.secrets.forgejoAdminPassword.result; }; "theuser" = { email = "theuser@example.com"; - password.result = config.shb.hardcodedsecret.forgejoUserPassword.result; + password.result = config.shb.sops.secrets.forgejoUserPassword.result; }; }; }; -shb.hardcodedsecret."forgejo/admin/password" = { +shb.sops.secrets."forgejo/admin/password" = { request = config.shb.forgejo.users."theadmin".password.request; }; -shb.hardcodedsecret."forgejo/user/password" = { +shb.sops.secrets."forgejo/user/password" = { request = config.shb.forgejo.users."theuser".password.request; }; ``` @@ -180,7 +180,7 @@ shb.restic.instances."forgejo" = { }; ``` -The name `"forgjo"` in the `instances` can be anything. +The name `"forgejo"` in the `instances` can be anything. The `config.shb.forgejo.backup` option provides what directories to backup. You can define any number of Restic instances to backup Forgejo multiple times.