From 9c371189a2c28d00f9a48a9141c1fd1d082b657b Mon Sep 17 00:00:00 2001 From: frju365 Date: Thu, 10 Aug 2017 17:22:06 +0200 Subject: [PATCH] Create config.js --- conf/config.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 conf/config.js diff --git a/conf/config.js b/conf/config.js new file mode 100644 index 0000000..6817f7d --- /dev/null +++ b/conf/config.js @@ -0,0 +1,20 @@ +'use strict'; + +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": "__ADMINPASS__" + // "sslKeyFile": './tmp/cert.key', + // "sslCertFile": './tmp/cert.pem', +};