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