fix(docspell): config typos

This commit is contained in:
Khaïs COLIN 2024-08-23 09:13:15 +00:00
parent 7576621f00
commit 7a0bc90d93

View file

@ -10,13 +10,13 @@ in
base-url = "http://localhost:7878"; base-url = "http://localhost:7878";
bind = { bind = {
address = "0.0.0.0"; address = "0.0.0.0";
port = "7878"; port = 7878;
}; };
scheduler.pool-size = 1; scheduler.pool-size = 1;
jdbc = { jdbc = {
url = "jdbc:postgresql://localhost:5432/docspell"; url = "jdbc:postgresql://localhost:5432/docspell";
user = "docspell"; user = "docspell";
paswword = "docspell"; password = "docspell";
}; };
}; };
services.docspell-restserver = { services.docspell-restserver = {
@ -38,7 +38,7 @@ in
jdbc = { jdbc = {
url = "jdbc:postgresql://localhost:5432/docspell"; url = "jdbc:postgresql://localhost:5432/docspell";
user = "docspell"; user = "docspell";
paswword = "docspell"; password = "docspell";
}; };
}; };
}; };