Skip to content
Snippets Groups Projects
Commit 94b7d361 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-828 enable actuator endpoints

parent df49f082
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ public class SecurityConfiguration extends KeycloakWebSecurityConfigurerAdapter
.antMatchers("/api").authenticated()//
.antMatchers("/api/**").authenticated()//
.antMatchers("/actuator").permitAll()//
.antMatchers("/actuator/*").permitAll()//
.antMatchers("/actuator/**").permitAll()//
.antMatchers("/").permitAll()//
.antMatchers("/*").permitAll()//
.anyRequest().denyAll();
......
......@@ -20,9 +20,9 @@ management:
server:
port: 8081
health:
livenessstate:
livenessState:
enabled: true
readinessstate:
readinessState:
enabled: true
endpoint:
health:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment