In my web.xml I use something like this:
<security-constraint>
<web-resource-collection>
<web-resource-name>Block all</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint/>
</security-constraint>
<security-constraint>
<web-resource-collection>
<web-resource-name>Allow facelets</web-resource-name>
<url-pattern>/faces/*</url-pattern>
<http-method>POST</http-method>
<http-method>GET</http-method>
</web-resource-collection>
<auth-constraint>
<role-name>*</role-name>
<auth-constraint>
</security-constraint>
All incoming requests are blocked except for those which start with /faces/. I do so because, otherwise, unauthorized users could access to facelets source files.
It works fine but it doesn't show welcome file because even the root path is blocked.
I tried to add <url-pattern>/</url-pattern> to second security-constraint but nothing.