d93cf6cefab83f225ec865cdad44d6f12c95e7e2
[squeep-authentication-module] / test / stub-config.js
1 'use strict';
2
3 function Config() {
4 return {
5 encryptionSecret: 'not a very good secret',
6 authenticator: {
7 basicRealm: 'realm',
8 secureAuthOnly: true,
9 forbiddenPAMIdentifiers: ['root'],
10 authnEnabled: ['argon2', 'pam', 'indieAuth'],
11 },
12 manager: {
13 pageTitle: 'test page',
14 },
15 dingus: {
16 selfBaseUrl: 'https://example.com/',
17 proxyPrefix: '',
18 },
19 };
20 }
21
22 module.exports = Config;