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