diff options
author | Franck Cuny <franck@fcuny.net> | 2022-11-07 19:30:11 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-11-07 19:30:11 -0800 |
commit | eb0294ef0be75ce93f087a2ef8d9bff35f2c65da (patch) | |
tree | 89a5b3220262d3e247614ae8a57e651b9719e895 | |
parent | fix(tools/import-gh-to-gitea): README + remove unused import (diff) | |
download | world-eb0294ef0be75ce93f087a2ef8d9bff35f2c65da.tar.gz |
fix(services/gitea): disable heatmap and registrations
Diffstat (limited to '')
-rw-r--r-- | modules/services/gitea/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/services/gitea/default.nix b/modules/services/gitea/default.nix index ac4cff3..5c44588 100644 --- a/modules/services/gitea/default.nix +++ b/modules/services/gitea/default.nix @@ -36,6 +36,8 @@ in httpPort = 8002; log.level = "Error"; settings = { + service.ENABLE_USER_HEATMAP = false; + service.DISABLE_REGISTRATION = true; other.SHOW_FOOTER_VERSION = false; metrics.ENABLED = true; metrics.ENABLED_ISSUE_BY_REPOSITORY = true; |