Skip to content
Snippets Groups Projects
Commit 03c2e522 authored by Bhushan Rade's avatar Bhushan Rade
Browse files

Merge branch 'disable-spring-web-security-205' into 'master'

disable-spring-web-security-205

See merge request !237
parents f6cbfd19 e84dc6a0
No related branches found
No related tags found
1 merge request!237disable-spring-web-security-205
Pipeline #80321 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