alioth/before/hoto/reference/graphResource2/production.env.js
2025-05-30 09:18:01 +08:00

44 lines
1.1 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// | ------------------------------------------------------------
// | @版本: version 0.1
// | @创建人: 【Nie-x7129】
// | @E-mail: x71291@outlook.com
// | @所在项目: initkoa
// | @文件描述: production.env.js -
// | @创建时间: 2023-11-25 21:36
// | @更新时间: 2023-11-25 21:36
// | @修改记录:
// | -*-*-*- (时间--修改人--修改说明) -*-*-*-
// | =
// | ------------------------------------------------------------
const prodConfig = {
appName: 'graphResource2',
port: 6000,
zip: true,
upfile:{
maxFileSize: 200 * 1024 * 1024,
hashAlgorithm: false, // md5 sha1 sha256 sha512
},
request:{
maxFieldsSize: 2 * 1024 * 1024,// 请求体大小
},
ratelimit:{
// 同设备IP限制登陆次数
status: true,
duration: 60 * 1000,
max: 1000000,
},
database:{
mysql:{
host: '127.0.0.1',
port: 3306,
username: 'root',
password: 'root',
database: 'graph_resource2'
}
}
}
export default prodConfig