mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
Add ssl option to MeiliSearch config
This commit is contained in:
parent
856e0359d5
commit
591639e570
3 changed files with 4 additions and 2 deletions
|
@ -87,6 +87,7 @@ redis:
|
|||
#meilisearch:
|
||||
# host: meilisearch
|
||||
# port: 7700
|
||||
# ssl: false
|
||||
# apiKey:
|
||||
|
||||
# ┌───────────────┐
|
||||
|
|
|
@ -39,11 +39,11 @@ export type Source = {
|
|||
collection?: string;
|
||||
bucket?: string;
|
||||
};
|
||||
|
||||
meilisearch: {
|
||||
host: string;
|
||||
port: number;
|
||||
apiKey?: string;
|
||||
ssl: boolean
|
||||
};
|
||||
|
||||
proxy?: string;
|
||||
|
|
|
@ -20,9 +20,10 @@ const hasConfig =
|
|||
const host = hasConfig ? config.meilisearch.host ?? "localhost" : "";
|
||||
const port = hasConfig ? config.meilisearch.port ?? 7700 : 0;
|
||||
const auth = hasConfig ? config.meilisearch.apiKey ?? "" : "";
|
||||
const ssl = hasConfig ? config.meilisearch.ssl ?? false : false;
|
||||
|
||||
const client: MeiliSearch = new MeiliSearch({
|
||||
host: `http://${host}:${port}`,
|
||||
host: `${ssl ? "https" : "http"}://${host}:${port}`,
|
||||
apiKey: auth,
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue