feat(server): move librechat webapp config to its own module
This commit is contained in:
parent
181e5d6ec8
commit
ecad3fc68e
2 changed files with 28 additions and 18 deletions
|
@ -1,34 +1,48 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.server.web-apps;
|
||||
inherit (lib) singleton mkEnableOption mkIf;
|
||||
inherit (lib.pantheon) mkRootDomain mkPortOption mkStrOption;
|
||||
cfg = config.server.web-apps.librechat;
|
||||
upstreamCfg = config.services.librechat;
|
||||
in
|
||||
{
|
||||
imports = singleton "${inputs.rrvsh-nixpkgs}/nixos/modules/services/web-apps/librechat.nix";
|
||||
|
||||
imports = [
|
||||
"${inputs.rrvsh-nixpkgs}/nixos/modules/services/web-apps/librechat.nix"
|
||||
];
|
||||
|
||||
options.server.web-apps = {
|
||||
librechat.enable = lib.mkEnableOption "";
|
||||
options.server.web-apps.librechat = {
|
||||
enable = mkEnableOption "";
|
||||
port = mkPortOption 3080;
|
||||
url = mkStrOption;
|
||||
mongodbURI = mkStrOption // {
|
||||
default = "mongodb://${config.system.hostname}:27017/LibreChat";
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.librechat.enable {
|
||||
config = mkIf cfg.enable {
|
||||
environment.persistence."/persist".directories = singleton {
|
||||
directory = upstreamCfg.logDir;
|
||||
inherit (upstreamCfg) user group;
|
||||
};
|
||||
server.networking.ddns.domains = singleton (mkRootDomain cfg.url);
|
||||
server.web-servers.nginx.proxies = lib.mkIf config.server.web-servers.nginx.enable (singleton {
|
||||
source = cfg.url;
|
||||
target = "http://${config.system.hostname}:${builtins.toString cfg.port}";
|
||||
});
|
||||
services.librechat = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
port = 3080;
|
||||
inherit (cfg) port;
|
||||
env = {
|
||||
HOST = "0.0.0.0";
|
||||
ALLOW_REGISTRATION = "true";
|
||||
NO_INDEX = "true";
|
||||
MONGO_URI = "mongodb://apollo:27017/LibreChat";
|
||||
DOMAIN_CLIENT = "https://chat.bwfiq.com";
|
||||
DOMAIN_SERVER = "https://chat.bwfiq.com";
|
||||
MONGO_URI = cfg.mongodbURI;
|
||||
DOMAIN_CLIENT = cfg.url;
|
||||
DOMAIN_SERVER = cfg.url;
|
||||
ENDPOINTS = "anthropic,agents,google";
|
||||
};
|
||||
credentials = {
|
|
@ -35,6 +35,7 @@
|
|||
};
|
||||
web-apps = {
|
||||
librechat.enable = true;
|
||||
librechat.url = "chat.bwfiq.com";
|
||||
mattermost.enable = true;
|
||||
mattermost.url = "mm.bwfiq.com";
|
||||
};
|
||||
|
@ -47,11 +48,6 @@
|
|||
source = "aenyrathia.wiki";
|
||||
target = "http://helios:5896";
|
||||
}
|
||||
{
|
||||
#TODO: merge into librechat module
|
||||
source = "chat.bwfiq.com";
|
||||
target = "http://localhost:3080";
|
||||
}
|
||||
{
|
||||
source = "il.bwfiq.com";
|
||||
target = "http://helios:2283";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue