We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 104ca03 + d2a5a82 commit 533e07dCopy full SHA for 533e07d
1 file changed
src/main/kotlin/io/openfuture/api/config/SecurityConfig.kt
@@ -41,7 +41,7 @@ class SecurityConfig(
41
.antMatchers("/static/**").permitAll()
42
.antMatchers("**.js").permitAll()
43
.antMatchers("/widget/**").permitAll()
44
- .antMatchers("/**").access("hasIpAddress('127.0.0.1') or hasIpAddress('0:0:0:0:0:0:0:1') or hasIpAddress('${properties.cidr}')")
+ //.antMatchers("/**").access("hasIpAddress('${properties.cidr}')")
45
.anyRequest().authenticated()
46
47
.and()
0 commit comments