How can I change the Session timeout?

Version 3.2 by Xavier Richard on 2015/06/16

The Session is controlled by the Servlet Container, not by XWiki. Usually the default timeout is set to 30 minutes.

So just configure your web.xml file with the Session timeout you wish to use.

For example:

 ...
 </servlet-mapping>

 <session-config>
   <session-timeout>30</session-timeout>
 </session-config>
...

Get Connected