Fix parameter name.
[glibc/pb-stable.git] / nscd / nscd.conf
blobed05ba495fca2721b4d1e6ebbd8503f6487bac70
2 # /etc/nscd.conf
4 # An example Name Service Cache config file.  This file is needed by nscd.
6 # Legal entries are:
8 #       logfile                 <file>
9 #       debug-level             <level>
10 #       threads                 <#threads to use>
11 #       server-user             <user to run server as instead of root>
12 #               server-user is ignored if nscd is started with -S parameters
13 #       stat-user               <user who is allowed to request statistics>
15 #       enable-cache            <service> <yes|no>
16 #       positive-time-to-live   <service> <time in seconds>
17 #       negative-time-to-live   <service> <time in seconds>
18 #       suggested-size          <service> <prime number>
19 #       check-files             <service> <yes|no>
21 # Currently supported cache names (services): passwd, group, hosts
25 #       logfile                 /var/log/nscd.log
26 #       threads                 6
27 #       server-user             nobody
28 #       stat-user               somebody
29         debug-level             0
31         enable-cache            passwd          yes
32         positive-time-to-live   passwd          600
33         negative-time-to-live   passwd          20
34         suggested-size          passwd          211
35         check-files             passwd          yes
37         enable-cache            group           yes
38         positive-time-to-live   group           3600
39         negative-time-to-live   group           60
40         suggested-size          group           211
41         check-files             group           yes
43         enable-cache            hosts           yes
44         positive-time-to-live   hosts           3600
45         negative-time-to-live   hosts           20
46         suggested-size          hosts           211
47         check-files             hosts           yes