summaryrefslogtreecommitdiffstats
path: root/lass/2configs/services/flix/proxy.nix
blob: c16c6def3ad19ade2de2b339d2b2765306d75ee7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:
{
  services.nginx.virtualHosts."flix.lassul.us" = {
    forceSSL = true;
    enableACME = true;
    locations."/" = {
      proxyPass = "http://yellow.r:8096";
      proxyWebsockets = true;
      recommendedProxySettings = true;
    };
  };
}