summaryrefslogtreecommitdiffstats
path: root/lass/2configs/orange-host.nix
blob: 3fbf417a7c7b076e081f4e1b50cb6db9be2d4fce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:
{
  lass.sync-containers3.containers.orange = {
    sshKey = "${toString <secrets>}/orange.sync.key";
  };
  services.nginx.virtualHosts."lassul.us" = {
    # enableACME = config.security;
    # forceSSL = true;
    locations."/" = {
      recommendedProxySettings = true;
      proxyWebsockets = true;
      proxyPass = "http://orange.r";
    };
  };
}