@@ -42,23 +42,44 @@ $ helm delete -n lowcoder my-lowcoder
42
42
43
43
| Name | Description | Value |
44
44
| --------------------------------------- | --------------------------------------------------------------------------------- | -------------- |
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 ` |
45
47
| ` global.config.workspaceMode ` | Sets the workspace mode. Possible types are: SAAS, ENTERPRISE | ` SAAS ` |
46
48
| ` global.config.userId ` | User ID of user running Lowcoder server application in container | ` 9001 ` |
47
49
| ` global.config.groupId ` | Group ID of user running Lowcoder server application in container | ` 9001 ` |
48
50
| ` global.config.corsAllowedDomains ` | CORS allowed domains | ` * ` |
49
51
| ` 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 ` |
50
54
| ` global.config.encryption.password ` | Encryption password - CHANGE IT! | ` lowcoder.org ` |
51
55
| ` 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... ` |
53
59
| ` global.config.maxQueryTimeout ` | Maximum query timeout in seconds | ` 120 ` |
54
60
| ` 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 ` |
55
63
| ` global.config.nodeServiceUrl ` | URL to node-service server if using external one (disabled by default) | |
56
64
| ` 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 ` |
57
67
| ` global.defaults.maxOrgsPerUser ` | Maximum allowed organizations per user | ` 100 ` |
58
68
| ` global.defaults.maxMembersPerOrg ` | Maximum allowed members per organization | ` 1000 ` |
59
69
| ` global.defaults.maxGroupsPerOrg ` | Maximum groups allowed per organization | ` 100 ` |
60
70
| ` global.defaults.maxAppsPerOrg ` | Maximum allowed applications per organization | ` 1000 ` |
61
71
| ` 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 ` |
62
83
63
84
### Redis
64
85
0 commit comments