From d190b69664f83cbf67966627eab058f886920631 Mon Sep 17 00:00:00 2001 From: Jan Date: Sat, 25 Oct 2025 16:45:43 +0200 Subject: [PATCH] Marked session cookies as secure in `application.properties`. --- src/main/resources/application.properties | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 681b6e9..1651e9d 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -24,3 +24,4 @@ spring.flyway.locations=classpath:db/migration spring.flyway.baseline-on-migrate=true spring.sql.init.mode=never server.forward-headers-strategy=native +server.servlet.session.cookie.secure=true