We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
最近公安部要求我部apollo自带的eureka登录时需要增加账户和密码验证,像这样: ,我通过对apollo的源码分析,发现是只做了更精确的匹配,实际使用时通过指定路径窗口登录又不能到eureka注册界面的。比如到如下界面:
源码为如下: 其中的.antMatchers("/**").permitAll();非常不安全。 代码修改改为如下初步是可以解决问题的:
The text was updated successfully, but these errors were encountered:
eureka开启访问控制是为了让只有受控的apollo-configservice和apollo-adminservice可以注册到eureka。
Sorry, something went wrong.
公安部要求eureka dashboard需要增加账户才能访问。不得已。重新打的包,制作的镜像,满足了安全需求。
No branches or pull requests
最近公安部要求我部apollo自带的eureka登录时需要增加账户和密码验证,像这样:
,我通过对apollo的源码分析,发现是只做了更精确的匹配,实际使用时通过指定路径窗口登录又不能到eureka注册界面的。比如到如下界面:
源码为如下:
其中的.antMatchers("/**").permitAll();非常不安全。
代码修改改为如下初步是可以解决问题的:
The text was updated successfully, but these errors were encountered: