summaryrefslogtreecommitdiffstats
path: root/lass/2configs/services/coms/proxy.nix
blob: e8555f9b7c41b737c536a99c01d7f0a8db5d08d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ 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};
        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}";
    };
  };
}