2005-01-21 Roland McGrath <roland@redhat.com>
[glibc.git] / nscd / nscd.conf
blob87e7a84487d1f8bc20a927c7a3b318c15f7694c1
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                 <initial #threads to use>
11 #       max-threads             <maximum #threads to use>
12 #       server-user             <user to run server as instead of root>
13 #               server-user is ignored if nscd is started with -S parameters
14 #       stat-user               <user who is allowed to request statistics>
15 #       reload-count            unlimited|<number>
16 #       paranoia                <yes|no>
17 #       restart-interval        <time in seconds>
19 #       enable-cache            <service> <yes|no>
20 #       positive-time-to-live   <service> <time in seconds>
21 #       negative-time-to-live   <service> <time in seconds>
22 #       suggested-size          <service> <prime number>
23 #       check-files             <service> <yes|no>
24 #       persistent              <service> <yes|no>
25 #       shared                  <service> <yes|no>
27 # Currently supported cache names (services): passwd, group, hosts
31 #       logfile                 /var/log/nscd.log
32 #       threads                 6
33 #       max-threads             128
34 #       server-user             nobody
35 #       stat-user               somebody
36         debug-level             0
37 #       reload-count            5
38         paranoia                no
39 #       restart-interval        3600
41         enable-cache            passwd          yes
42         positive-time-to-live   passwd          600
43         negative-time-to-live   passwd          20
44         suggested-size          passwd          211
45         check-files             passwd          yes
46         persistent              passwd          yes
47         shared                  passwd          yes
49         enable-cache            group           yes
50         positive-time-to-live   group           3600
51         negative-time-to-live   group           60
52         suggested-size          group           211
53         check-files             group           yes
54         persistent              group           yes
55         shared                  group           yes
57         enable-cache            hosts           yes
58         positive-time-to-live   hosts           3600
59         negative-time-to-live   hosts           20
60         suggested-size          hosts           211
61         check-files             hosts           yes
62         persistent              hosts           yes
63         shared                  hosts           yes