From 046dffe1b812e0d355408810bb5cc638b73c2ffe Mon Sep 17 00:00:00 2001 From: Daniel Gerhardt <code@dgerhardt.net> Date: Tue, 7 Feb 2017 16:22:14 +0100 Subject: [PATCH] Remove context.xml Servlet Container config The context.xml currently is only used to setup Tomcat's Manager component. A file path for session persistence is set. This configuration is unnecessary and complicatetes the setup since Tomcat persists sessions by default without any additional configuration according to https://tomcat.apache.org/tomcat-6.0-doc/config/manager.html. --- src/main/webapp/META-INF/context.xml | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 src/main/webapp/META-INF/context.xml diff --git a/src/main/webapp/META-INF/context.xml b/src/main/webapp/META-INF/context.xml deleted file mode 100644 index 999513541..000000000 --- a/src/main/webapp/META-INF/context.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?xml version='1.0' encoding='utf-8'?> -<Context> - <Manager pathname="${catalina.base}/sessions/arsnova-war.ser"/> -</Context> -- GitLab