initial commit
[squeep-authentication-module] / test / stub-config.js
diff --git a/test/stub-config.js b/test/stub-config.js
new file mode 100644 (file)
index 0000000..d93cf6c
--- /dev/null
@@ -0,0 +1,22 @@
+'use strict';
+
+function Config() {
+  return {
+    encryptionSecret: 'not a very good secret',
+    authenticator: {
+      basicRealm: 'realm',
+      secureAuthOnly: true,
+      forbiddenPAMIdentifiers: ['root'],
+      authnEnabled: ['argon2', 'pam', 'indieAuth'],
+    },
+    manager: {
+      pageTitle: 'test page',
+    },
+    dingus: {
+      selfBaseUrl: 'https://example.com/',
+      proxyPrefix: '',
+    },
+  };
+}
+
+module.exports = Config;
\ No newline at end of file