integrated rigby

This commit is contained in:
Bryan Ramos 2026-04-12 13:55:51 -04:00
parent 532c874c96
commit 6af94e54d5
9 changed files with 1653 additions and 8 deletions

View file

@ -71,6 +71,33 @@ in
'';
};
};
virtualHosts."chat.${domain}" = {
useACMEHost = domain;
forceSSL = true;
locations."/" = {
proxyPass = "http://192.168.0.23:3080";
proxyWebsockets = true;
};
};
virtualHosts."ai.${domain}" = {
useACMEHost = domain;
forceSSL = true;
locations."/" = {
proxyPass = "http://192.168.0.23:8000";
proxyWebsockets = true;
};
};
virtualHosts."comfy.${domain}" = {
useACMEHost = domain;
forceSSL = true;
locations."/" = {
proxyPass = "http://192.168.0.23:8188";
proxyWebsockets = true;
};
};
};
};
}