update application properties

This commit is contained in:
2025-07-31 11:21:29 +02:00
parent a9cdf3592d
commit a44889da83
2 changed files with 31 additions and 17 deletions

View File

@@ -4,19 +4,25 @@ In realms of connectedness, where devices roam free, A nexus of management, harm
## Properties for deployment
| name | required | info |
|----------------------------|:--------:|-------------------------|
| spring.profiles.active | ✓ | Spring Boot environment |
| spring.cache.type | | Cache type (redis) |
| spring.data.redis.host | ✓ | Redis host |
| spring.data.redis.port | | Redis port |
| spring.data.redis.database | ✓ | Redis database |
| spring.data.redis.password | ✗ | Redis password |
| jwt.public-key | ✓ | JWT public key file |
| account-registry.url | ✓ | Account Register URL |
| device-registry.url | ✓ | Device Register URL |
| name | required | info |
|---------------------------------|:--------:|----------------------------|
| spring.profiles.active | ✗ | Spring Boot environment |
| spring.session.timeout | | Session timeout |
| spring.data.redis.database | | Redis database |
| spring.data.redis.port | | Redis port |
| spring.data.redis.host | ✔ | Redis host |
| spring.data.redis.password | ✱ | Redis password |
| server.error.include-exception | | Exception class on error |
| server.error.include-message | | Exception message on error |
| server.error.include-stacktrace | | stack trace on error |
| jwt.public-key | ✗ | JWT public key file |
| account-registry.url | ✔ | Account Register URL |
| device-registry.url | ✔ | Device Register URL |
*Required: ✓ can be stored as text, and ✗ need to be stored as secret.*
*Required:*
- *✓ can be stored as text. ✔ predefined in environment*
- *✗ mounted file.*
- *✱ need to be stored as secret.*
## Releasing Service