This commit is contained in:
commit
95a533c876
451 changed files with 18255 additions and 0 deletions
44
docs/modules/nixos/open-webui-oci.md
Normal file
44
docs/modules/nixos/open-webui-oci.md
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Open WebUI OCI
|
||||
|
||||
Open WebUI is an extensible, self-hosted AI interface that adapts to your workflow, all while operating entirely offline.
|
||||
|
||||
View the [*synix* NixOS module on Forgejo](https://git.sid.ovh/sid/synix/tree/master/modules/nixos/open-webui-oci).
|
||||
|
||||
## References
|
||||
|
||||
- [Homepage](https://openwebui.com/)
|
||||
- [GitHub](https://github.com/open-webui/open-webui)
|
||||
- [Environment Configuration](https://docs.openwebui.com/getting-started/env-configuration/)
|
||||
|
||||
## Configuration
|
||||
|
||||
```nix
|
||||
{ inputs, ... }:
|
||||
|
||||
{
|
||||
imports = [ inputs.synix.nixosModules.open-webui-oci ];
|
||||
|
||||
services.open-webui-oci.enable = true;
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
Visit the web interface at your specified location to create an admin account.
|
||||
|
||||
> The default location is `http://127.0.0.1:8080`.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### JSON parse error
|
||||
|
||||
If you get this error in the web interface:
|
||||
|
||||
```
|
||||
SyntaxError: Unexpected token 'd', "data: {"id"... is not valid JSON category
|
||||
```
|
||||
|
||||
Clear your browser cache. Steps on Chromium based browsers:
|
||||
|
||||
1. Open DevTools (F12) → Right-click refresh button
|
||||
1. Click "Empty Cache and Hard Reload"
|
||||
Loading…
Add table
Add a link
Reference in a new issue