Skip to content
Snippets Groups Projects
Commit e84dc6a0 authored by Meghnath Saha's avatar Meghnath Saha
Browse files

disable-spring-web-security-205

parent ac64cbf9
No related branches found
No related tags found
1 merge request!237disable-spring-web-security-205
Pipeline #80313 failed
...@@ -15,20 +15,20 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter { ...@@ -15,20 +15,20 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override @Override
protected void configure(HttpSecurity http) throws Exception { protected void configure(HttpSecurity http) throws Exception {
http http
.csrf().disable() .csrf().disable();
.authorizeRequests() // .authorizeRequests()
.antMatchers("/", "/index.html", // .antMatchers("/", "/index.html",
"/liveness_check", // "/liveness_check",
"/readiness_check", // "/readiness_check",
"/index-worker", "/_dps/task-handlers", "/_dps/task-handlers/**", // "/index-worker", "/_dps/task-handlers", "/_dps/task-handlers/**",
"/reindex", // "/reindex",
"/v2/api-docs", // "/v2/api-docs",
"/swagger-resources/**", // "/swagger-resources/**",
"/configuration/security", // "/configuration/security",
"/swagger", // "/swagger",
"/info", // "/info",
"/swagger-ui.html", // "/swagger-ui.html",
"/webjars/**").permitAll() // "/webjars/**").permitAll()
.anyRequest().anonymous(); // .anyRequest().anonymous();
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment