nix-config/modules/nixos-modules/server/forgejo/proxy.nix

18 lines
446 B
Nix

{
lib,
config,
...
}: let
const = import ./const.nix;
httpPort = const.httpPort;
in {
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
];
};
}