@@ -42,23 +42,44 @@ $ helm delete -n lowcoder my-lowcoder
4242
4343| Name | Description | Value |
4444| --------------------------------------- | --------------------------------------------------------------------------------- | -------------- |
45+ | ` global.config.publicUrl ` | URL of the public User Interface (used eg. in invitation links) | ` https://somedomain.com/ ` |
46+ | ` global.config.createWorkspaceOnSignup ` | If workspaceMode = SAAS, controls if own workspace is created for the user after sign up | ` true ` |
4547| ` global.config.workspaceMode ` | Sets the workspace mode. Possible types are: SAAS, ENTERPRISE | ` SAAS ` |
4648| ` global.config.userId ` | User ID of user running Lowcoder server application in container | ` 9001 ` |
4749| ` global.config.groupId ` | Group ID of user running Lowcoder server application in container | ` 9001 ` |
4850| ` global.config.corsAllowedDomains ` | CORS allowed domains | ` * ` |
4951| ` global.config.enableUserSignUp ` | Enable users signing up to lowcoder via login page | ` true ` |
52+ | ` global.config.enableEmailAuth ` | Controls whether authentication via email is enabled | ` true ` |
53+ | ` global.config.emailNotificationSender ` | Email used in notifications from lowcoder | ` info@localhost ` |
5054| ` global.config.encryption.password ` | Encryption password - CHANGE IT! | ` lowcoder.org ` |
5155| ` global.config.encryption.salt ` | Encryption salt - CHANGE IT! | ` lowcoder.org ` |
52- | ` global.config.apiKeySecret ` | API-KEY secret, should be a string of at least 32 random characters - CHANGE IT | ` 5a41b090758b39b226603177ef48d73ae9839dd458ccb7e66f7e7cc028d5a50b ` |
56+ | ` global.config.superuser.username ` | Lowcoder superadmin username | ` admin@localhost ` |
57+ | ` global.config.superuser.password ` | Lowcoder superadmin password - if not supplied, it will be generated | |
58+ | ` global.config.apiKeySecret ` | API-KEY secret, should be a string of at least 32 random characters - CHANGE IT | ` 5a41b0905... ` |
5359| ` global.config.maxQueryTimeout ` | Maximum query timeout in seconds | ` 120 ` |
5460| ` global.config.maxRequestSize ` | Maximum request size | ` 20m ` |
61+ | ` global.config.snapshotRetentionTime ` | Lowcoder application snapshot retention time (in days) | ` 30 ` |
62+ | ` global.config.marketplacePrivateMode ` | Controls whether to show Apps on the local Marketplace to anonymous users | ` true ` |
5563| ` global.config.nodeServiceUrl ` | URL to node-service server if using external one (disabled by default) | |
5664| ` global.config.apiServiceUrl ` | URL to api-service server if using external one (disabled by default) | |
65+ | ` global.cookie.name ` | Name of the lowcoder application cookie | ` LOWCODER_CE_SELFHOST_TOKEN ` |
66+ | ` global.cookie.maxAge ` | Lowcoder application cookie max age in hours | ` 24 ` |
5767| ` global.defaults.maxOrgsPerUser ` | Maximum allowed organizations per user | ` 100 ` |
5868| ` global.defaults.maxMembersPerOrg ` | Maximum allowed members per organization | ` 1000 ` |
5969| ` global.defaults.maxGroupsPerOrg ` | Maximum groups allowed per organization | ` 100 ` |
6070| ` global.defaults.maxAppsPerOrg ` | Maximum allowed applications per organization | ` 1000 ` |
6171| ` global.defaults.maxDevelopers ` | Maximum allowed developer accounts | ` 100 ` |
72+ | ` global.defaults.apiRateLimit ` | Number of max Request per Second - set to 0 to disable rate limiting | ` 100 ` |
73+ | ` global.defaults.queryTimeout ` | Default lowcoder query timeout | ` 10 ` |
74+ | ` global.mailServer.host ` | Mail server host (used for sending lowcoder emails) | ` localhost ` |
75+ | ` global.mailServer.port ` | Mail server port | ` 578 ` |
76+ | ` global.mailServer.smtpAuth ` | Use SMPT authentication when sending mails | ` false ` |
77+ | ` global.mailServer.authUsername ` | Username (email) used for SMTP authentication | |
78+ | ` global.mailServer.authPassword ` | Password used for authentication | |
79+ | ` global.mailServer.useSSL ` | Enable SSL for connetion to the mail server | ` false ` |
80+ | ` global.mailServer.useStartTLS ` | Enable STARTTLS | ` true ` |
81+ | ` global.mailServer.requireStartTLS ` | Require STARTTLS | ` true ` |
82+ | ` global.plugins.folder ` | Folder from which to load lowcoder plugins | ` /plugins ` |
6283
6384### Redis
6485
0 commit comments