diff options
author | lassulus <git@lassul.us> | 2023-02-22 07:27:10 +0100 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-02-22 07:32:37 +0100 |
commit | 222f1e92dbc10aa389f712ae0d345befe4e5423f (patch) | |
tree | 705adc51ffcd7832d8aaca06b4803b315fa1931a /lass/2configs/services/coms/proxy.nix | |
parent | 79a7ab4fd8899e7ac197318bb58a3e04affdf459 (diff) |
l orange.r: add coms service, proxy via neoprism.r
Diffstat (limited to 'lass/2configs/services/coms/proxy.nix')
-rw-r--r-- | lass/2configs/services/coms/proxy.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lass/2configs/services/coms/proxy.nix b/lass/2configs/services/coms/proxy.nix new file mode 100644 index 000000000..57e132151 --- /dev/null +++ b/lass/2configs/services/coms/proxy.nix @@ -0,0 +1,41 @@ +{ config, lib, pkgs, ... }: +let + tcpports = [ + 4443 # jitsi + 64738 # murmur + ]; + udpports = [ + 10000 # jitsi + 64738 # murmur + ]; + target = "orange.r"; +in +{ + networking.firewall.allowedTCPPorts = tcpports; + networking.firewall.allowedUDPPorts = udpports; + services.nginx.streamConfig = '' + ${lib.concatMapStringsSep "\n" (port: '' + server { + listen ${toString port}; + proxy_pass ${target}:${toString port}; + } + '') tcpports} + ${lib.concatMapStringsSep "\n" (port: '' + server { + listen ${toString port} udp; + proxy_pass ${target}:${toString port}; + } + '') udpports} + ''; + + services.nginx.virtualHosts."jitsi.lassul.us" = { + enableACME = true; + acmeFallbackHost = "${target}"; + addSSL = true; + locations."/" = { + recommendedProxySettings = true; + proxyWebsockets = true; + proxyPass = "http://${target}"; + }; + }; +} |