ark/hosts/wolumonde/modules/gitea.nix

21 lines
528 B
Nix
Raw Normal View History

2023-10-13 23:14:32 +03:00
{config, ...}: {
2022-08-11 02:57:40 +03:00
services.gitea = {
enable = true;
2022-08-23 09:18:59 +03:00
settings = {
2023-10-13 23:14:32 +03:00
server = {
DOMAIN = "git.gaze.systems";
ROOT_URL = "https://git.gaze.systems/";
HTTP_PORT = 3001;
};
2022-08-23 09:18:59 +03:00
service.DISABLE_REGISTRATION = true;
session.COOKIE_SECURE = true;
};
2022-08-11 02:57:40 +03:00
};
services.nginx.virtualHosts."git.gaze.systems" = {
2023-05-08 23:09:44 +03:00
useACMEHost = "gaze.systems";
2022-08-11 02:57:40 +03:00
forceSSL = true;
2023-10-13 23:14:32 +03:00
locations."/".proxyPass = "http://localhost:${toString config.services.gitea.settings.server.HTTP_PORT}";
2022-08-11 02:57:40 +03:00
};
}