nixos-config/2configs/deployment/paper.nix
2024-01-15 22:11:59 +01:00

16 lines
286 B
Nix

{config, ... }:
{
services.nginx = {
enable = lib.mkDefault true;
virtualHosts."work.euer.krebsco.de" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://omo.r:28981";
proxyWebsockets = true;
};
};
};
}