Skip to content

Commit

Permalink
debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Frooodle committed Nov 29, 2024
1 parent e588d8f commit 5976e69
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,10 +150,11 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
http.sessionManagement(
sessionManagement ->
sessionManagement
.sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED)
.sessionCreationPolicy(SessionCreationPolicy.ALWAYS)
.sessionAuthenticationStrategy(
new RegisterSessionAuthenticationStrategy(
sessionRegistry)) // ?
.sessionFixation().changeSessionId()
.maximumSessions(10)
.maxSessionsPreventsLogin(false)
.sessionRegistry(sessionRegistry)
Expand Down
8 changes: 4 additions & 4 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ multipart.enabled=true
logging.level.org.springframework=WARN
logging.level.org.hibernate=WARN
logging.level.org.eclipse.jetty=WARN
#logging.level.org.springframework.security.saml2=TRACE
logging.level.org.springframework.security.saml2=TRACE
#logging.level.org.springframework.security=DEBUG
#logging.level.org.opensaml: DEBUG
logging.level.org.opensaml: DEBUG
logging.level.com.zaxxer.hikari=WARN

logging.level.stirling.software.SPDF.config.security: DEBUG
spring.jpa.open-in-view=false

server.forward-headers-strategy=NATIVE
Expand All @@ -30,7 +30,7 @@ server.servlet.context-path=${SYSTEM_ROOTURIPATH:/}

spring.devtools.restart.enabled=true
spring.devtools.livereload.enabled=true
spring.devtools.restart.exclude=stirling/software/SPDF/config/security/saml2/**
spring.devtools.restart.exclude=stirling.software.SPDF.config.security/**

spring.thymeleaf.encoding=UTF-8

Expand Down

0 comments on commit 5976e69

Please sign in to comment.