Wiki Home » FAQ » How can I change the Session timeout?

How can I change the Session timeout?

Last modified by Vincent Massol on 2012/03/24

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:
Created by Vincent Massol on 2011/12/21