Community moderators have prevented the ability to post new answers.
Like Peter said on the ticket (https://support.atlassian.com/browse/CSP-87328)
To increase the time to expire the session, you'll have to edit the web.xml:
<session-config> <session-timeout>60</session-timeout></session-config> |
The value within the session-timeout tag defines the length of time a user's session will exist, in minutes.
Then, restart Confluence. After it, if you wish to configure Confluence's internal database connection pool timeout period, please tweak the c3p0.timeout property in <YOUR CONFLUENCE HOME DIRECTORY>/confluence.cfg.xml file:
<property name="hibernate.c3p0.timeout">30</property>
This value determines the number of seconds a database connection can remain pooled but unused before being discarded. Zero means idle connections never expire.
Detailed informations in this page:
https://confluence.atlassian.com/pages/viewpage.action?pageId=126910597
Kind Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.