Disable directory listings by setting the jbossweb-tomcat55.sar/conf/web.xml default servlet listings param to false:
| <servlet> | <servlet-name>default</servlet-name> | <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> | <init-param> | <param-name>debug</param-name> | <param-value>0</param-value> | </init-param> | <init-param> | <param-name>listings</param-name> | <param-value>false</param-value> | </init-param> | <load-on-startup>1</load-on-startup> | </servlet> | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3932557#3932557 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3932557 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
