diff options
| author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2019-10-21 00:41:12 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-10-21 00:41:12 +0900 |
| commit | 97b6af62fe45634906ec7063edc4fcafde1b0bea (patch) | |
| tree | 55b0f689b7cd50c44ccaee224df90148089d22fb /src/config | |
| parent | Fix bug on iOS (diff) | |
| download | misskey-97b6af62fe45634906ec7063edc4fcafde1b0bea.tar.gz misskey-97b6af62fe45634906ec7063edc4fcafde1b0bea.tar.bz2 misskey-97b6af62fe45634906ec7063edc4fcafde1b0bea.zip | |
Add ssl to elasticsearch config settings (#5527)
Diffstat (limited to 'src/config')
| -rw-r--r-- | src/config/types.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config/types.ts b/src/config/types.ts index 6a3fc3092a..b96e727506 100644 --- a/src/config/types.ts +++ b/src/config/types.ts @@ -29,6 +29,7 @@ export type Source = { port: number; pass: string; index?: string; + ssl?: boolean; }; autoAdmin?: boolean; |