Author: Karsten Loesing <[email protected]> Date: Mon, 11 Oct 2010 15:24:35 +0200 Subject: Fix welcome file location. Commit: edaca1c041ea6c243f041e501fd776968288bb49
--- etc/web.xml | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/etc/web.xml b/etc/web.xml index 4401dc7..e6d0c30 100644 --- a/etc/web.xml +++ b/etc/web.xml @@ -6,10 +6,6 @@ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" > - <welcome-file-list> - <welcome-file>WEB-INF/index.jsp</welcome-file> - </welcome-file-list> - <servlet> <servlet-name>Index</servlet-name> <servlet-class>org.torproject.ernie.web.IndexServlet</servlet-class> @@ -236,5 +232,9 @@ <param-name>jdbcUrl</param-name> <param-value>jdbc:postgresql://localhost/tordir?user=ernie&password=password</param-value> </context-param> + + <welcome-file-list> + <welcome-file>index.html</welcome-file> + </welcome-file-list> </web-app> -- 1.7.1
