Skip to content

Commit 33c2223

Browse files
authored
Merge pull request #542 from MerginMaps/add_security_variables
Added SECURITY_EMAIL_SALT and SECURITY_BEARER_SALT
2 parents e2c7de2 + 2961178 commit 33c2223

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/server/administer/environment.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ Security settings are important for production use.
1919
|--------------------------|-----------|-----------|-------------|
2020
| `BEARER_TOKEN_EXPIRATION`| integer | `43200` | Lifetime of authorisation bearer token in seconds. When expired, users need to log in again. |
2121
| `SECRET_KEY`⭐️ | string | | Secret key for authorisation, should be a generated strong string. |
22+
| `SECURITY_EMAIL_SALT`⭐️| string | | Token salt for sending verification email, should be a generated strong string. |
23+
| `SECURITY_BEARER_SALT`⭐️| string | | Bearer token salt for decode web token, should be a generated strong string.|
2224
| `SECURITY_PASSWORD_SALT`⭐️| string | | Password salt for hashing, should be a generated strong string. |
2325
| `WTF_CSRF_ENABLED` | Boolean | `true` | Enable CSRF protection. It is strongly recommended to have this on. |
2426
| `WTF_CSRF_TIME_LIMIT` | integer | `86400` | Lifetime of CSRF token in seconds. When expired, users need to refresh it. |

0 commit comments

Comments
 (0)