mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 08:23:16 +00:00
readme
This commit is contained in:
@@ -8,14 +8,17 @@ You can overwrite the default configuration by creating a `custom-config.ts` fil
|
|||||||
|
|
||||||
### Example `custom-config.ts`
|
### Example `custom-config.ts`
|
||||||
|
|
||||||
```typescript
|
```js
|
||||||
import { Config } from "./default-config";
|
const customConfig = {
|
||||||
|
|
||||||
const customConfig: Partial<Config> = {
|
|
||||||
session: {
|
session: {
|
||||||
lifetime_in_seconds: 7200,
|
lifetime_in_seconds: 7200,
|
||||||
},
|
},
|
||||||
|
selfservice: {
|
||||||
|
change_password: {
|
||||||
|
enabled: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default customConfig;
|
module.exports = customConfig;
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user