stockholm/lass/2configs/orange-host.nix

16 lines
378 B
Nix
Raw Normal View History

2023-01-30 19:40:25 +00:00
{ config, pkgs, ... }:
{
2023-01-30 19:53:24 +00:00
krebs.sync-containers3.containers.orange = {
2023-01-30 19:40:25 +00:00
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";
};
};
}