From a1a18f77a50804e0127dfa4b0f5240c49c541184 Mon Sep 17 00:00:00 2001 From: Scott Jackson Date: Mon, 2 Jul 2012 21:24:02 -0700 Subject: Initial Commit --- subsonic-main/src/main/webapp/WEB-INF/web.xml | 207 ++++++++++++++++++++++++++ 1 file changed, 207 insertions(+) create mode 100644 subsonic-main/src/main/webapp/WEB-INF/web.xml (limited to 'subsonic-main/src/main/webapp/WEB-INF/web.xml') diff --git a/subsonic-main/src/main/webapp/WEB-INF/web.xml b/subsonic-main/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 00000000..bf484e28 --- /dev/null +++ b/subsonic-main/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,207 @@ + + + + Subsonic Music Streamer + + + + contextConfigLocation + + /WEB-INF/applicationContext-service.xml + /WEB-INF/applicationContext-security.xml + /WEB-INF/applicationContext-cache.xml + + + + + org.springframework.web.context.ContextLoaderListener + + + net.sf.ehcache.constructs.web.ShutdownListener + + + + subsonic + org.springframework.web.servlet.DispatcherServlet + 1 + + + + DWR Servlet + dwr-invoker + org.directwebremoting.servlet.DwrServlet + + + + subsonic + *.view + + + subsonic + /podcast + + + subsonic + /wap + + + subsonic + /play.m3u + + + subsonic + /stream/* + + + subsonic + /rest/* + + + subsonic + /share/* + + + dwr-invoker + /dwr/* + + + + index.html + index.jsp + + + + java.lang.Throwable + /error.jsp + + + + BootstrapVerificationFilter + net.sourceforge.subsonic.filter.BootstrapVerificationFilter + + + BootstrapVerificationFilter + /* + + + + ParameterDecodingFilter + net.sourceforge.subsonic.filter.ParameterDecodingFilter + + + ParameterDecodingFilter + /* + + + + RequestEncodingFilter + net.sourceforge.subsonic.filter.RequestEncodingFilter + + encoding + UTF-8 + + + + RequestEncodingFilter + /* + + + + Sets HTTP headers to enable browser caching. + CacheFilter + net.sourceforge.subsonic.filter.ResponseHeaderFilter + + Cache-Control + max-age=36000 + + + + + Sets HTTP headers to disable browser caching. + NoCacheFilter + net.sourceforge.subsonic.filter.ResponseHeaderFilter + + Cache-Control + no-cache, post-check=0, pre-check=0 + + + Pragma + no-cache + + + Expires + Thu, 01 Dec 1994 16:00:00 GMT + + + + + The "Expires" HTTP header is set to avoid overly eager browser caching of + pages that implements LastModified. + ExpiresFilter + net.sourceforge.subsonic.filter.ResponseHeaderFilter + + Expires + Thu, 01 Dec 1994 16:00:00 GMT + + + + + CacheFilter + /icons/* + + + CacheFilter + /style/* + + + + NoCacheFilter + /statusChart.view + + + NoCacheFilter + /userChart.view + + + NoCacheFilter + /playQueue.view + + + NoCacheFilter + /podcastReceiver.view + + + NoCacheFilter + /help.view + + + NoCacheFilter + /top.view + + + NoCacheFilter + /home.view + + + + ExpiresFilter + /left.view + + + + AcegiFilter + org.acegisecurity.util.FilterToBeanProxy + + targetClass + org.acegisecurity.util.FilterChainProxy + + + + + AcegiFilter + /* + + + \ No newline at end of file -- cgit v1.2.3