pccs/conf/config.json

49 lines
1.2 KiB
JSON

{
"password_key": "pccs_secret_key_change_in_production",
"logger": {
"name": "pccs",
"level": "debug",
"file": "/d/pccs/logs/pccs.log"
},
"filesroot": "/d/pccs/files",
"databases": {
"pccs": {
"driver": "mysql",
"minsize": 2,
"maxsize": 10,
"kwargs": {
"host": "127.0.0.1",
"port": 3306,
"user": "test",
"password": "1fN6G2pwnHzV21ip/ZEM6Q==",
"db": "pccs",
"charset": "utf8mb4",
"autocommit": true
}
}
},
"website": {
"host": "0.0.0.0",
"port": 9180,
"client_max_size": 104857600,
"paths": [
["/d/pccs/wwwroot", "/"]
],
"processors": [
[".tmpl", "tmpl"],
[".ui", "bui"],
[".dspy", "dspy"],
[".wss", "ws"]
],
"indexes": ["index.ui", "index.html"],
"session": {
"session_max_time": 86400,
"session_issue_time": 7200
},
"statics": [
["/bricks/", "/d/pccs/wwwroot/bricks/"],
["/imgs/", "/d/pccs/wwwroot/imgs/"]
]
}
}