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 {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.csrf().disable()
.authorizeRequests()
.antMatchers("/", "/index.html",
"/liveness_check",
"/readiness_check",
"/index-worker", "/_dps/task-handlers", "/_dps/task-handlers/**",
"/reindex",
"/v2/api-docs",
"/swagger-resources/**",
"/configuration/security",
"/swagger",
"/info",
"/swagger-ui.html",
"/webjars/**").permitAll()
.anyRequest().anonymous();
.csrf().disable();
// .authorizeRequests()
// .antMatchers("/", "/index.html",
// "/liveness_check",
// "/readiness_check",
// "/index-worker", "/_dps/task-handlers", "/_dps/task-handlers/**",
// "/reindex",
// "/v2/api-docs",
// "/swagger-resources/**",
// "/configuration/security",
// "/swagger",
// "/info",
// "/swagger-ui.html",
// "/webjars/**").permitAll()
// .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