Files
MeowBox-Core/config.example.json

34 lines
745 B
JSON

{
"server": {
"host": "0.0.0.0",
"port": 2233,
"tls": {
"enabled": false,
"cert_file": "",
"key_file": ""
},
"advanced": {
"read_timeout": 30,
"write_timeout": 30,
"idle_timeout": 300,
"max_header_bytes": 1
}
},
"password": {
"memory": 4,
"iterations": 3,
"parallelism": 2,
"salt_length": 16,
"key_length": 32
},
"database": {
"driver": "mysql",
"host": "localhost",
"port": 3306,
"username": "root",
"password": "password",
"database": "meowbox",
"prefix": "box_",
"file_path": ""
}
}