Rev 15519 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
15519 | bpr | 1 | /* module log file length */ |
2 | int MODULE_LOG_LIMIT=102400; |
||
3 | /* general log file length */ |
||
4 | int GEN_LOG_LIMIT=1024000; |
||
5 | /* number of old log files */ |
||
16508 | guerimand | 6 | int OLD_LOG_FILES=5; |
15519 | bpr | 7 | /* number of days for log files */ |
8 | int LOG_DELETE=100; |
||
9 | |||
10 | /* sessions not accessed more than these seconds will be erased. */ |
||
11 | int idle_time=5400; |
||
12 | /* non-class sessions not accessed more than these seconds will be erased. */ |
||
13 | int idle_time2=2400; |
||
14 | /* first-time sessions not accessed more than these seconds will be erased. */ |
||
15 | int idle_time3=900; |