Completed modified session handling for all lcs bundles.

git-svn-id: https://svn.libreccm.org/ccm/trunk@5627 8810af33-2d31-482b-a856-94f89814c4df
master
pb 2018-08-02 03:38:40 +00:00
parent 1e31c2dd23
commit fbeba3a53a
4 changed files with 48 additions and 6 deletions

View File

@ -5,9 +5,15 @@
version="3.0"> version="3.0">
<!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
librecms requires at minimum Servlet Spec 3.0 / Tomcat 7.0 basic web.xml for ccm-core and basic functions. If
additional modules provide specific web.xml snippets they must be
integrated before CCM is ready to work. Alternatively a
complete web.xml file from an installation bundle may be used.
ccm-core requires at minimum Servlet Spec 3.0 / Tomcat 7.0
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<display-name>LibreCMS BASE Site</display-name> <display-name>LibreCMS BASE Site</display-name>
<description>Community and Content Management</description> <description>Community and Content Management</description>
@ -19,6 +25,11 @@
<param-value>WEB-INF/conf/log4j2.xml</param-value> <param-value>WEB-INF/conf/log4j2.xml</param-value>
</context-param> </context-param>
<!-- Prevent Session ID in URL (for security reasons!) -->
<session-config>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
<!-- Require secure connection by redirect to host-port part <!-- Require secure connection by redirect to host-port part
of parameter waf.web.secure_server of parameter waf.web.secure_server

View File

@ -5,9 +5,15 @@
version="3.0"> version="3.0">
<!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
librecms requires at minimum Servlet Spec 3.0 / Tomcat 7.0 basic web.xml for ccm-core and basic functions. If
additional modules provide specific web.xml snippets they must be
integrated before CCM is ready to work. Alternatively a
complete web.xml file from an installation bundle may be used.
ccm-core requires at minimum Servlet Spec 3.0 / Tomcat 7.0
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<display-name>LibreCMS DEMO Site</display-name> <display-name>LibreCMS DEMO Site</display-name>
<description>Community and Content Management</description> <description>Community and Content Management</description>
@ -19,6 +25,11 @@
<param-value>WEB-INF/conf/log4j2.xml</param-value> <param-value>WEB-INF/conf/log4j2.xml</param-value>
</context-param> </context-param>
<!-- Prevent Session ID in URL (for security reasons!) -->
<session-config>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
<!-- Require secure connection by redirect to host-port part <!-- Require secure connection by redirect to host-port part
of parameter waf.web.secure_server of parameter waf.web.secure_server
<filter> <filter>

View File

@ -5,10 +5,16 @@
version="3.0"> version="3.0">
<!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
librecms requires at minimum Servlet Spec 3.0 / Tomcat 7.0 basic web.xml for ccm-core and basic functions. If
additional modules provide specific web.xml snippets they must be
integrated before CCM is ready to work. Alternatively a
complete web.xml file from an installation bundle may be used.
ccm-core requires at minimum Servlet Spec 3.0 / Tomcat 7.0
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<display-name>LibreCMS OpenCCM Site</display-name>
<display-name>LibreCMS Devel Site</display-name>
<description>Community and Content Management</description> <description>Community and Content Management</description>
<!-- path and filename of the log4j2 user accessible config file <!-- path and filename of the log4j2 user accessible config file
@ -19,6 +25,11 @@
<param-value>WEB-INF/conf/log4j2.xml</param-value> <param-value>WEB-INF/conf/log4j2.xml</param-value>
</context-param> </context-param>
<!-- Prevent Session ID in URL (for security reasons!) -->
<session-config>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
<!-- Require secure connection by redirect to host-port part <!-- Require secure connection by redirect to host-port part
of parameter waf.web.secure_server of parameter waf.web.secure_server
<filter> <filter>
@ -167,7 +178,6 @@
<servlet-class>com.arsdigita.cms.dispatcher.TemplateXSLServlet</servlet-class> <servlet-class>com.arsdigita.cms.dispatcher.TemplateXSLServlet</servlet-class>
</servlet> </servlet>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
MODULES SERVLET DECLARATIONS SECTION MODULES SERVLET DECLARATIONS SECTION
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->

View File

@ -5,7 +5,12 @@
version="3.0"> version="3.0">
<!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <!--- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
librecms requires at minimum Servlet Spec 3.0 / Tomcat 7.0 basic web.xml for ccm-core and basic functions. If
additional modules provide specific web.xml snippets they must be
integrated before CCM is ready to work. Alternatively a
complete web.xml file from an installation bundle may be used.
librecms requires at minimum Servlet Spec 3.0 / Tomcat 7.0
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<display-name>LibreCMS Standard Site</display-name> <display-name>LibreCMS Standard Site</display-name>
@ -19,6 +24,11 @@
<param-value>WEB-INF/conf/log4j2.xml</param-value> <param-value>WEB-INF/conf/log4j2.xml</param-value>
</context-param> </context-param>
<!-- Prevent Session ID in URL (for security reasons!) -->
<session-config>
<tracking-mode>COOKIE</tracking-mode>
</session-config>
<!-- Require secure connection by redirect to host-port part <!-- Require secure connection by redirect to host-port part
of parameter waf.web.secure_server of parameter waf.web.secure_server
<filter> <filter>