feat(nixosModules/server): add nginx

This commit is contained in:
Mohammad Rafiq 2025-06-04 20:31:37 +08:00
parent d478e9009f
commit 5ba9667f4e
No known key found for this signature in database
4 changed files with 28 additions and 34 deletions

View file

@ -25,6 +25,7 @@
databases.mongodb.enable = true;
databases.mysql.enable = true;
librechat.enable = true;
web-servers.nginx.enable = true;
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

View file

@ -42,16 +42,6 @@
server = {
mountHelios = true;
reverse-proxy = {
enable = true;
type = "nginx";
proxies = [
{
source = "chat.bwfiq.com";
target = "";
}
];
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";