From 691e20521d89a1b5f0c24ab3194a162a476c7a93 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 17 Dec 2023 12:07:53 -0600 Subject: [PATCH] docs: update default config content (#5798) --- docs/docs/install/config-file.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/docs/install/config-file.md b/docs/docs/install/config-file.md index 67f277e1f778f..0db304e06713b 100644 --- a/docs/docs/install/config-file.md +++ b/docs/docs/install/config-file.md @@ -32,7 +32,7 @@ The default configuration looks like this: "backgroundTask": { "concurrency": 5 }, - "clipEncoding": { + "smartSearch": { "concurrency": 2 }, "metadataExtraction": { @@ -66,11 +66,15 @@ The default configuration looks like this: "concurrency": 1 } }, + "logging": { + "enabled": true, + "level": "log" + }, "machineLearning": { "enabled": true, "url": "http://immich-machine-learning:3003", "classification": { - "enabled": true, + "enabled": false, "modelName": "microsoft/resnet-50", "minScore": 0.9 }, @@ -88,7 +92,8 @@ The default configuration looks like this: }, "map": { "enabled": true, - "tileUrl": "https://tile.openstreetmap.org/{z}/{x}/{y}.png" + "lightStyle": "", + "darkStyle": "" }, "reverseGeocoding": { "enabled": true @@ -133,9 +138,6 @@ The default configuration looks like this: "enabled": true, "cronExpression": "0 0 * * *" } - }, - "stylesheets": { - "css": "" } } ```