mirror of https://github.com/searx/searx
parent
8f07442fb6
commit
82ac634070
|
@ -13,6 +13,7 @@ import mysql.connector
|
|||
engine_type = 'offline'
|
||||
auth_plugin = 'caching_sha2_password'
|
||||
host = "127.0.0.1"
|
||||
port = 3306
|
||||
database = ""
|
||||
username = ""
|
||||
password = ""
|
||||
|
@ -36,6 +37,7 @@ def init(engine_settings):
|
|||
user=username,
|
||||
password=password,
|
||||
host=host,
|
||||
port=port,
|
||||
auth_plugin=auth_plugin,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue