Skip to content

Commit

Permalink
gabisa deploy di staging...
Browse files Browse the repository at this point in the history
  • Loading branch information
pesolosep committed May 25, 2024
1 parent bbc2d2a commit 4776fe8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public SecurityFilterChain securityFilterChain(HttpSecurity httpSecurity) throws
authorizeRequests
.requestMatchers("/actuator/prometheus").permitAll() // Allow unauthenticated access
.requestMatchers("/subscription-box/**", "/public/**").permitAll()
.requestMatchers("/**").permitAll()
.anyRequest().authenticated())
.sessionManagement(session -> session.sessionCreationPolicy(SessionCreationPolicy.STATELESS))
.addFilterBefore(new JWTAuthFilter(jwtUtils), UsernamePasswordAuthenticationFilter.class);
Expand Down

0 comments on commit 4776fe8

Please sign in to comment.