open-webui: fix documentation

This commit is contained in:
ibizaman 2025-09-27 21:58:19 +02:00 committed by Pierre Penninckx
parent 02b73d2dce
commit 32d643d13f
2 changed files with 6 additions and 5 deletions

View file

@ -11,13 +11,13 @@ in
subdomain = lib.mkOption { subdomain = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "Subdomain under which Karakeep will be served."; description = "Subdomain under which Open-WebUI will be served.";
default = "pinchflat"; default = "open-webui";
}; };
domain = lib.mkOption { domain = lib.mkOption {
type = lib.types.str; type = lib.types.str;
description = "domain under which Karakeep will be served."; description = "domain under which Open-WebUI will be served.";
example = "mydomain.com"; example = "mydomain.com";
}; };
@ -29,7 +29,7 @@ in
port = lib.mkOption { port = lib.mkOption {
type = lib.types.port; type = lib.types.port;
description = "Port Karakeep listens to incoming requests."; description = "Port Open-WebUI listens to incoming requests.";
default = 12444; default = 12444;
}; };
@ -102,7 +102,7 @@ in
}; };
sharedSecret = lib.mkOption { sharedSecret = lib.mkOption {
description = "OIDC shared secret for Audiobookshelf."; description = "OIDC shared secret for Open-WebUI.";
type = lib.types.submodule { type = lib.types.submodule {
options = contracts.secret.mkRequester { options = contracts.secret.mkRequester {
owner = "open-webui"; owner = "open-webui";

View file

@ -11,6 +11,7 @@ This service sets up [Open WebUI][] which provides a frontend to various LLMs.
## Features {#services-open-webui-features} ## Features {#services-open-webui-features}
- Telemetry disabled. - Telemetry disabled.
- Skip onboarding.
- Declarative [LDAP](#services-open-webui-options-shb.open-webui.ldap) Configuration. - Declarative [LDAP](#services-open-webui-options-shb.open-webui.ldap) Configuration.
Needed LDAP groups are created automatically. Needed LDAP groups are created automatically.
- Declarative [SSO](#services-open-webui-options-shb.open-webui.sso) Configuration. - Declarative [SSO](#services-open-webui-options-shb.open-webui.sso) Configuration.