-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add elasticsearch ssl options (#5499)
- Loading branch information
1 parent
6943524
commit 933293a
Showing
2 changed files
with
35 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,28 +20,37 @@ props: | |
title: Host(s) | ||
hint: Comma-separated list of Elasticsearch hosts to connect to, including the port, username and password if necessary. (e.g. http://localhost:9200, https://user:[email protected]:9200) | ||
order: 2 | ||
verifyTLSCertificate: | ||
title: Verify TLS Certificate | ||
type: Boolean | ||
default: true | ||
order: 3 | ||
tlsCertPath: | ||
title: TLS Certificate Path | ||
type: String | ||
hint: Absolute path to the TLS certificate on the server. | ||
order: 4 | ||
indexName: | ||
type: String | ||
title: Index Name | ||
hint: The index name to use during creation | ||
default: wiki | ||
order: 3 | ||
order: 5 | ||
analyzer: | ||
type: String | ||
title: Analyzer | ||
hint: 'The token analyzer in elasticsearch' | ||
default: simple | ||
order: 4 | ||
order: 6 | ||
sniffOnStart: | ||
type: Boolean | ||
title: Sniff on start | ||
hint: 'Should Wiki.js attempt to detect the rest of the cluster on first connect? (Default: off)' | ||
default: false | ||
order: 5 | ||
order: 7 | ||
sniffInterval: | ||
type: Number | ||
title: Sniff Interval | ||
hint: '0 = disabled, Interval in seconds to check for updated list of nodes in cluster. (Default: 0)' | ||
default: 0 | ||
order: 6 | ||
|
||
order: 8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters