You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
227 B
8 lines
227 B
1 month ago
|
# Elasticsearch配置
|
||
|
ES_CONFIG = {
|
||
|
"hosts": "https://10.10.14.206:9200",
|
||
|
"basic_auth": ("elastic", "your_password"),
|
||
|
"verify_certs": False,
|
||
|
"ssl_show_warn": False,
|
||
|
"default_index": "knowledge_base"
|
||
|
}
|