-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
20 lines (12 loc) · 1.05 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
SERVER_PROTOCOL=http
SERVER_LISTEN_ON=0.0.0.0
SERVER_PORT=3000
URI_SERVER=localhost
API_NAME=docs
# The JWT secret is used to sign and verify JSON Web Tokens (JWTs) to ensure the integrity and authenticity of the tokens.
# It is important to change the default secret to a complex and unique value to prevent security vulnerabilities and unauthorized access. YOu can generate a new secret using a secure random generator. Just as I did:
# https://jwtsecret.com/generate
JWT_SECRET="ea9d45310f7e66833199f1915f3306151d3e8bab36102a6a5c54eef1500ddcbec469626a9b92adef6a9728ec1541e8b0ce2342aa8ce779c600a1828f359246ec0c7a943fcef26c795787173509a01323e2a7136d13271776eb1bbc152abfbc62b654eeea460eb72f2a57db2728d3b8910db80fb06e8a642f9dfbe7ed9cf8673da16ca8dccc21e0fda3507d32625d2296a8331664b84495b946ae3a2f5bcab5e2a4becd54d4abf87098ae6f38af8954ec5a8ef74fc87d229101d7225d404304e7c4d56acd5820093b16fc8bdee45addaeec680a2053b75f6ab39c259a511bc8b196996e24d900ed92b52f6c630982f0db287d587d2d7c1d5c264b9b8802a0b9e6"
JWT_EXPIRES_IN_S=3000
DATABASE_NAME=database/api.db
DATABASE_LOG=false