add jwt Properties to application.yml

This commit is contained in:
Mika Bomm 2024-09-08 10:22:25 +02:00
parent 2f861b40c3
commit 9c117f8ffb

View file

@ -21,6 +21,13 @@ logging:
minio:
endpoint: "http://localhost:9000" # Your MinIO endpoint URL
access-key: ${MINIO_ACCESS_KEY} # Environment variable for the access key
secret-key: ${MINIO_SECRET_KEY} # Environment variable for the secret key
bucket-name: docusphere # The bucket name you want to use
access-key: "${MINIO_ACCESS_KEY}" # Environment variable for the access key
secret-key: "${MINIO_SECRET_KEY}" # Environment variable for the secret key
bucket-name: "docusphere" # The bucket name you want to use
# Jwt properties
security:
jwt:
secret-key: "${JWT_SECRET_KEY}" # Environment variable for the secret key
expiration-time: 3600000 # 1 hour