/** * Base configuration - shared across all environments */ module.exports = { server: { port: 3000, host: '0.0.0.0' }, gateway: { url: 'http://127.0.0.1:18789', token: 'a41984619a5f4b9bf9148ab6eb4abca53eb796d046cbbec5' }, session: { secret: 'change-me-in-production', maxAge: 24 * 60 * 60 * 1000 // 24 hours }, auth: { disabled: false, ldap: { enabled: false, url: 'ldap://localhost:389', baseDN: 'ou=users,dc=example,dc=com', bindDN: '', bindPassword: '', searchFilter: '(uid={{username}})' } }, data: { dir: './data' } };