in content/30_containerize-app/app/src/main/java/com/atlassian/jira/jsw/sample/dataprovider/WebSecurityConfiguration.java [38:48]
protected void configure(HttpSecurity http) throws Exception {
http.csrf()
.disable()
.antMatcher("/proxy/**")
.authorizeRequests()
.anyRequest().authenticated()
.and()
.httpBasic()
.realmName(baseUrl)
.authenticationEntryPoint(authenticationEntryPoint);
}