I am working on a web based application using Tomcat. I want to avoid access to some .txt files in my web directories. So I have added the following constraints to my web.xml file below --
Restrict direct access to Text files Text files *.txt
I have added this tag in the web.xml file of my project and also to the main web.xml file of Tomcat. Also there are no other security-constraint tags used in the web.xml so there is no threat of any form of overriding. But I am still able to access .txt files from the url as in -- https: //10.111.32.82/admin/#/mytest.txt.
Is there anything that I am missing. Any help here would be highly appreciated.