26 lines
655 B
Nix
26 lines
655 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
const = import ./const.nix;
|
|
httpPort = const.httpPort;
|
|
in {
|
|
options.services.forgejo = {
|
|
subdomain = lib.mkOption {
|
|
type = lib.types.str;
|
|
description = "subdomain of base domain that forgejo will be hosted at";
|
|
default = "forgejo";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf (config.services.forgejo.enable && config.host.reverse_proxy.enable) {
|
|
host.reverse_proxy.subdomains.${config.services.forgejo.subdomain} = {
|
|
target = "http://localhost:${toString httpPort}";
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
config.services.forgejo.settings.server.SSH_LISTEN_PORT
|
|
];
|
|
};
|
|
}
|