diff options
author | Sandro Santilli <strk@kbt.io> | 2017-03-18 04:10:30 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-03-18 11:10:30 +0800 |
commit | 5ecb369dacb929c218399379350fa2ecb05693ae (patch) | |
tree | 9cdcca75702dcf7babc2aa33775e6ca17711bdf8 | |
parent | 71d16f69ff9448e55f371ce8354d978f8dbe2cba (diff) | |
download | gitea-5ecb369dacb929c218399379350fa2ecb05693ae.tar.gz gitea-5ecb369dacb929c218399379350fa2ecb05693ae.zip |
Specify that time interval units are seconds (#1311)
-rw-r--r-- | conf/app.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/app.ini b/conf/app.ini index c2d41b8535..385d58509f 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -306,9 +306,9 @@ COOKIE_NAME = i_like_gitea COOKIE_SECURE = false ; Enable set cookie, default is true ENABLE_SET_COOKIE = true -; Session GC time interval, default is 86400 +; Session GC time interval in seconds, default is 86400 (1 day) GC_INTERVAL_TIME = 86400 -; Session life time, default is 86400 +; Session life time in seconds, default is 86400 (1 day) SESSION_LIFE_TIME = 86400 [picture] |