mirror of
https://github.com/Foltik/Shimapan
synced 2024-11-10 15:48:27 -05:00
39 lines
632 B
JSON
39 lines
632 B
JSON
{
|
|
"Server": {
|
|
"port": 443,
|
|
"hostname": "https://shimapan.rocks"
|
|
},
|
|
"Database": {
|
|
"host": "mongodb://localhost:27017/shimapan"
|
|
},
|
|
"Upload": {
|
|
"path": "uploads",
|
|
"maxSize": 134217728,
|
|
"charset": "abcdefghijklmnopqrstuvwxyz",
|
|
"idLength": 6
|
|
},
|
|
"View": {
|
|
"inlineMimeTypes": [
|
|
"image/*",
|
|
"text/plain"
|
|
]
|
|
},
|
|
"User": {
|
|
"Username": {
|
|
"maxLength": 36,
|
|
"restrictedChars": "\\s"
|
|
},
|
|
"Password": {
|
|
"saltLength": 64,
|
|
"hashIterations": 25000
|
|
}
|
|
},
|
|
"Key": {
|
|
"limit": 5
|
|
},
|
|
"Log": {
|
|
"http": true,
|
|
"httpLevel": "combined"
|
|
}
|
|
}
|