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

16 lines
377 B
Nix
Raw Normal View History

2023-01-30 19:40:25 +00:00
{ 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";
};
};
}