Skip to content

Commit

Permalink
Merge pull request #129 from Team-B1ND/Feature/#127
Browse files Browse the repository at this point in the history
fix: /actuator/prometheus 허용
  • Loading branch information
suw0n authored Oct 7, 2024
2 parents d58420b + b4873df commit 0248c2a
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
.addFilterAfter(broadcastMemberFilter, AuthorizationFilter.class)

.authorizeHttpRequests()

.requestMatchers("/actuator/prometheus").permitAll()

.requestMatchers(POST, "/auth/**").permitAll()

Expand Down

0 comments on commit 0248c2a

Please sign in to comment.