We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the latest Spring Security which leverages WebFlux, the security config works like below,
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) { http.authorizeExchange().pathMatchers("/**") ....
Before there is a method hasIpAddress("xxx.xxx.xxx.xxx") we can use to config IP whitelist, now it's gone.
How to specify IP whitelist for new Spring Security Webflux?
The text was updated successfully, but these errors were encountered:
Support specify IP whitelist for Spring Security Webflux
68a9182
Closes spring-projectsgh-7765
1856c4c
9f51240
Support IP whitelist for Spring Security Webflux
43317c5
Closes gh-7765
Add missing since
44e85e3
Issue spring-projectsgh-7765
176f7b2
Issue gh-7765
074e38d
sjohnr
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
In the latest Spring Security which leverages WebFlux, the security config works like below,
SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) {
http.authorizeExchange().pathMatchers("/**") ....
Before there is a method hasIpAddress("xxx.xxx.xxx.xxx") we can use to config IP whitelist, now it's gone.
How to specify IP whitelist for new Spring Security Webflux?
The text was updated successfully, but these errors were encountered: