From b31d143bcdb721cdbdbf8d3950d687fee9a5ad86 Mon Sep 17 00:00:00 2001 From: Jacob Gunther <16949253+PassTheMayo@users.noreply.github.com> Date: Mon, 11 Dec 2017 09:45:37 -0600 Subject: [PATCH] Revert config.js to previous state --- config.js | 79 +++++++++++++++++++++++++++++++------------------------ 1 file changed, 45 insertions(+), 34 deletions(-) diff --git a/config.js b/config.js index 70e81d8..52ad004 100644 --- a/config.js +++ b/config.js @@ -1,36 +1,47 @@ { - "host": "0.0.0.0", - "port": 7777, - "keyLength": 10, - "maxLength": 400000, - "staticMaxAge": 86400, - "recompressStaticAssets": true, - "logging": [ - { - "level": "verbose", - "type": "Console", - "colorize": true - } - ], - "keyGenerator": { - "type": "phonetic" - }, - "rateLimits": { - "categories": { - "normal": { - "totalRequests": 500, - "every": 60000 - } - } - }, - "storage": { - "type": "redis", - "host": "0.0.0.0", - "port": 6379, - "db": 2, - "expire": 2592000 - }, - "documents": { - "about": "./about.md" - } + + "host": "0.0.0.0", + "port": 7777, + + "keyLength": 10, + + "maxLength": 400000, + + "staticMaxAge": 86400, + + "recompressStaticAssets": true, + + "logging": [ + { + "level": "verbose", + "type": "Console", + "colorize": true + } + ], + + "keyGenerator": { + "type": "phonetic" + }, + + "rateLimits": { + "categories": { + "normal": { + "totalRequests": 500, + "every": 60000 + } + } + }, + + "storage": { + "type": "redis", + "host": "0.0.0.0", + "port": 6379, + "db": 2, + "expire": 2592000 + }, + + "documents": { + "about": "./about.md" + } + }