lrf402788946 4 år sedan
förälder
incheckning
5271ba8a36
1 ändrade filer med 20 tillägg och 0 borttagningar
  1. 20 0
      config/config.prod.js

+ 20 - 0
config/config.prod.js

@@ -0,0 +1,20 @@
+'use strict';
+
+module.exports = () => {
+  const config = exports = {};
+
+  config.logger = {
+    level: 'INFO',
+    consoleLevel: 'INFO',
+  };
+  // redis config
+  config.redis = {
+    client: {
+      port: 6379, // Redis port
+      host: '127.0.0.1', // Redis host
+      password: 123456,
+      db: 2,
+    },
+  };
+  return config;
+};