-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.txt
35 lines (34 loc) · 4.83 KB
/
env.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|------------------------------------|-------------------------------------------------------|---------------------------|-------------------------|
| Environment variable | Description | Default value | Configured value |
|------------------------------------|-------------------------------------------------------|---------------------------|-------------------------|
| APPLICATION_SERVER | URL of application server | | Address |
| APPLICATION_SERVER_TOKEN | Secret shared between servers | | String |
| BCRYPT_WORKLOAD_FACTOR | Strength to protect passwords | 10 | Integer |
| CACHE_APPLICATION_SERVER_FILES | Seconds to cache files from application server | 60 | Integer |
| CONTENT_SECURITY_POLICY | Value for content-security-policy header | | CSP header |
| DASHBOARD_SERVER | URL of dashboard server | | Address |
| DASHBOARD_SESSION_KEY | An application-level secret for user session tokens | | String |
| DELETE_DELAY | Cool-down time in days to delete accounts | 7 | Integer |
| DISABLE_METRICS | Disable aggregated metrics | unset | Boolean |
| DISABLE_REGISTRATION | Disable UI (not API) for registering | unset | Boolean |
| DOMAIN | Domain of server | unset | String |
| HOME_PATH | Alternative path for application home | | String |
| HOST | IP or address web server listens on | localhost | IP address |
| HOT_RELOAD | Reloads files every request | | Boolean |
| INLINE_CSS | Replaces linked CSS with embedded CSS | | Boolean |
| INLINE_JS | Replaces linked JS with embedded JS | | Boolean |
| INLINE_SVG | Replaces image SVG wtih embedded SVG | | Boolean |
| MAXIMUM_PASSWORD_LENGTH | Longest password length | 50 | Integer |
| MAXIMUM_POST_DATA_LENGTH | Largest POST payload accepted in bytes | 2000000 | Integer |
| MAXIMUM_RESET_CODE_LENGTH | Longest reset code length | 50 | Integer |
| MAXIMUM_USERNAME_LENGTH | Longest username length | 50 | Integer |
| MINIMUM_PASSWORD_LENGTH | Shortest password length | 6 | Integer |
| MINIMUM_RESET_CODE_LENGTH | Shortest reset code length | 6 | Integer |
| MINIMUM_USERNAME_LENGTH | Shortest username length | 6 | Integer |
| PAGE_SIZE | Rows of data per page | 10 | Integer |
| PORT | Port web server listens on | 8000 | Integer |
| REQUIRE_PROFILE | Require registration information | unset | Integer |
| SESSION_VERIFICATION_DELAY | Seconds before verifying a prolongued session | 14400 | Integer |
| USER_PROFILE_FIELDS | Information to collect at registration | contact-email,full-name | Profile property list |
|------------------------------------|-------------------------------------------------------|---------------------------|-------------------------|
2022-06-24T02:44:51.954Z