nixfiles/hosts/hetzner-vm/profiles/nginx-misc.nix
2023-05-25 13:41:20 +01:00

13 lines
245 B
Nix

{...}: {
services.nginx.virtualHosts."tablet-dev.owo.monster" = {
forceSSL = true;
enableACME = true;
locations = {
"/" = {
proxyPass = "http://10.69.42.2:8088";
proxyWebsockets = true;
};
};
};
}