ElasticSearchで認証ができるように (#6158)

This commit is contained in:
MeiMei 2020-03-20 14:00:34 +09:00 committed by GitHub
parent f2f7f532a0
commit 5bbd4ae703
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 3 deletions

View file

@ -27,9 +27,10 @@ export type Source = {
elasticsearch: {
host: string;
port: number;
pass: string;
index?: string;
ssl?: boolean;
user?: string;
pass?: string;
index?: string;
};
proxy?: string;