How can I change the Session timeout?

Last modified by Xavier Richard on 2020/01/28

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>
...
Tags:
   

Get Connected