configure tomcat for client authentication only for specific URL patterns

后端 未结 2 1702
一整个雨季
一整个雨季 2021-01-21 15:25

I have an application with a few war files all deployed on the same tomcat server. I need to force client authentication only for one war context, and only for a specific URL.

2条回答
  •  广开言路
    2021-01-21 16:10

    You can't do this in pure Tomcat. The best solution is to put an Apache HTTP in front of it, that terminates the SSL connection, and in which you can configure SSL to your heart's content right down to the level of an individual directory.

提交回复
热议问题