0
Answered

Can I configure session timeout?

arangj 7 years ago updated by Nguyen 7 years ago 3

Hi,

I'd like to know is it possible to configure timeout setting.

If it's possible, where can I modify it?

I've checked /conf/* and mycollab.ini file, but I can not find related settings.


I think it's set 30 minutes now. I'd like to change it more longer.


I'll wait your answer,

Thank you!


Answer

Answer
Answered

You can set the session timeout in the file web.xml

<!-- Session Configuration -->
<session-config>
        <session-timeout>60</session-timeout>
</session-config>

The MyCollab uses the web.xml, so if you set the value there so it will be affected to the MyCollab instance

Answer
Answered

You can set the session timeout in the file web.xml

<!-- Session Configuration -->
<session-config>
        <session-timeout>60</session-timeout>
</session-config>

The MyCollab uses the web.xml, so if you set the value there so it will be affected to the MyCollab instance

You are welcome :)