Anyone can help me to find out the default session time out in apache and CentOS.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This comes from php in
php.iniand not apache or the OS.The default value is 1440 (measured in seconds, so 24 minutes) but it depends on your hosting provider. The specific setting you are looking for is
session.gc_maxlifetimeEDIT:
Things to which the
Timeoutdirective mentioned in the other answers applies:When reading data from the client, the length of time to wait for a TCP packet to arrive if the read buffer is empty.
When writing data to the client, the length of time to wait for an acknowledgement of a packet if the send buffer is full.
In mod_cgi, the length of time to wait for output from a CGI script.
In mod_ext_filter, the length of time to wait for output from a filtering process.
In mod_proxy, the default timeout value if ProxyTimeout is not configured.
source on edit: Apache HTTP Server core docs