1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/psitransfer_ynh.git synced 2024-09-03 20:16:06 +02:00
psitransfer_ynh/conf/config.production.js
Éric Gaspar a9e9610594 fix
2023-09-20 20:29:53 +02:00

26 lines
698 B
JavaScript

module.exports = {
"accessLog": 'dev',
"retentions": {
"one-time": "one time download",
"60": "1 Minute",
"300": "5 Minutes",
"3600": "1 Hour",
"21600": "6 Hours",
"86400": "1 Day",
"259200": "3 Days",
"604800": "1 Week",
"1209600": "2 Weeks"
},
"defaultRetention": "3600",
"adminPass": "__PASSWORD__",
"uploadPass": "__PASSWORD__",
"baseUrl": '__PATH__',
"uploadDir": '__DATA_DIR__',
"port": __PORT__,
"uploadAppPath": '/',
// "maxFileSize": Math.pow(2, 20) * 15,
// "maxBucketSize": Math.pow(2, 20) * 20,
"mailFrom": "PsiTransfer <psitransfer@__DOMAIN__>"
// "sslKeyFile": './tmp/cert.key',
// "sslCertFile": './tmp/cert.pem',
};