diff --git a/server/src/main/resources/application.yml b/server/src/main/resources/application.yml index 48b9cd4..44ce95a 100644 --- a/server/src/main/resources/application.yml +++ b/server/src/main/resources/application.yml @@ -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 +