summaryrefslogtreecommitdiffstats
path: root/lass/2configs/orange-host.nix
blob: e4bfcff8994a9749e7b32bb5482d98b0efc1bf6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ config, pkgs, ... }:
{
  krebs.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";
    };
  };
}