Skip to content

Commit 533e07d

Browse files
Merge pull request #67 from OpenFuturePlatform/key-management
Ip filter removed from access
2 parents 104ca03 + d2a5a82 commit 533e07d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/kotlin/io/openfuture/api/config/SecurityConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class SecurityConfig(
4141
.antMatchers("/static/**").permitAll()
4242
.antMatchers("**.js").permitAll()
4343
.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}')")
44+
//.antMatchers("/**").access("hasIpAddress('${properties.cidr}')")
4545
.anyRequest().authenticated()
4646

4747
.and()

0 commit comments

Comments
 (0)