mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
temporary searxng instance for use with ollama, will probably break it out into another service at some point
This commit is contained in:
parent
c721d2e8f1
commit
7946d333b7
1 changed files with 24 additions and 4 deletions
|
|
@ -9,11 +9,31 @@
|
|||
acceleration = "rocm";
|
||||
};
|
||||
|
||||
networking.firewall.allowedTCPPorts = [3000];
|
||||
|
||||
services.nextjs-ollama-llm-ui = {
|
||||
services.open-webui = {
|
||||
enable = true;
|
||||
port = 3000;
|
||||
hostname = "0.0.0.0";
|
||||
host = "0.0.0.0";
|
||||
openFirewall = true;
|
||||
};
|
||||
|
||||
services.searx = {
|
||||
enable = true;
|
||||
redisCreateLocally = true;
|
||||
settings = {
|
||||
server.secret_key = "temptestsecret";
|
||||
server.port = 3001;
|
||||
server.bind_address = "0.0.0.0";
|
||||
search.formats = [
|
||||
"html"
|
||||
"json"
|
||||
];
|
||||
};
|
||||
limiterSettings = {
|
||||
botdetection = {
|
||||
ip_limit.link_token = false;
|
||||
ip_lists.block_ip = [];
|
||||
ip_lists.pass_ip = [];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue