Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion config/application-ssl.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ server.ssl.key-store-password=changeit
server.ssl.enabled=true

# Force the cookie to be only supplied on HTTPS connections.
server.servlet.session.cookie.secure=true
server.servlet.session.cookie.secure=true

# Disable the secrets manager as we don't have any secrets in AWS when testing.
spring.cloud.aws.secretsmanager.enabled=false
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wouldn't have put this here as it's completely unrelated to running tool support with SSL enabled. The common pattern is to disable it by default and then enable it when in AWS.

Loading