|  | @@ -25,8 +25,8 @@ public class ResourceServerConfig extends ResourceServerConfigurerAdapter {
 | 
	
		
			
				|  |  |  	@Override
 | 
	
		
			
				|  |  |  	public void configure(HttpSecurity http) throws Exception {
 | 
	
		
			
				|  |  |  		http.csrf().disable().exceptionHandling().accessDeniedHandler(baseAccessDeniedHandler).authenticationEntryPoint(baseAuthenticationEntryPoint).and()
 | 
	
		
			
				|  |  | -				// .authorizeRequests().antMatchers("/task/**").hasIpAddress("0.0.0.0/0")
 | 
	
		
			
				|  |  | -				.authorizeRequests().antMatchers("/task/**").permitAll()
 | 
	
		
			
				|  |  | +				.authorizeRequests().antMatchers("/task/**").hasIpAddress("0.0.0.0/0")
 | 
	
		
			
				|  |  | +				// .authorizeRequests().antMatchers("/task/**").permitAll()
 | 
	
		
			
				|  |  |  				.antMatchers("/v2/api-docs", "/code/*", "/api/*", "/appVersionInfo/queryByPlatform", "/uploadFile","/open/**").permitAll().anyRequest().authenticated()
 | 
	
		
			
				|  |  |  				.and().httpBasic();
 | 
	
		
			
				|  |  |  	}
 |