2021-07-26 01:29:05 +02:00
|
|
|
{ config, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
my = config.my;
|
|
|
|
port = 3000;
|
|
|
|
in
|
|
|
|
{
|
2021-07-26 02:55:35 +02:00
|
|
|
imports = [ ./drone.nix ./drone-runners.nix ];
|
2021-07-26 01:29:05 +02:00
|
|
|
services.gitea = {
|
|
|
|
enable = true;
|
|
|
|
domain = "git.${my.subZone}";
|
|
|
|
rootUrl = "https://git.${my.subZone}/";
|
|
|
|
httpAddress = "127.0.0.1";
|
|
|
|
httpPort = port;
|
|
|
|
database.type = "postgres";
|
|
|
|
disableRegistration = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
virtualHosts."git.${my.subZone}" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://127.0.0.1:${toString port}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|