Tomcat basic auth

后端 未结 1 513
醉话见心
醉话见心 2020-12-09 04:51

I\'ve got an existing WAR file that is not developed by me. I deploy the application to the Tomcat server and after that it is accessible for everybody. Which is not good. I

相关标签:
1条回答
  • 2020-12-09 05:16

    Just for those too lazy to go and read. Insert these lines into web.xml:

    <security-constraint>
        <web-resource-collection>
            <web-resource-name>
            </web-resource-name>
            <url-pattern>/*</url-pattern>
        </web-resource-collection>
        <auth-constraint>
            <role-name>manager</role-name>
        </auth-constraint>
    </security-constraint>
    <login-config>
        <auth-method>BASIC</auth-method>
        <realm-name>Hudson</realm-name>
    </login-config>
    

    It will take roles and passwords from $TOMCAT_HOME/conf/tomcat-users.xml by default (if no other realm is configured in server.xml) and allow only users having role manager.

    0 讨论(0)
提交回复
热议问题