feat: update gitea config, update shelly domains

This commit is contained in:
Jacob Bachmann 2024-09-12 14:10:16 +02:00
parent 9400db3cb6
commit 3bfb73efe9
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
2 changed files with 14 additions and 12 deletions

View file

@ -7,17 +7,19 @@
group = config.services.gitea.group;
};
services.gitea = rec {
services.gitea = {
enable = true;
appName = "dryb.org: Gitea Service";
database = {
type = "postgres";
passwordFile = config.age.secrets.passwords-gitea-db.path;
};
domain = "git.dryb.org";
rootUrl = "http://${domain}/";
httpPort = 8003;
settings = {
server = rec {
HTTP_PORT = 8003;
DOMAIN = "git.dryb.org";
ROOT_URL = "http://${DOMAIN}/";
};
service = {
DISABLE_REGISTRATION = true;
};