blob: 72844f3b59bee9941b14a8d79567ef708709cf15 (
plain)
1 README for squid 3.x
2
3 REQUIREMENTS
4
5 PRE-INSTALL
6 1. Create user/group squid with a unused id < 99:
7 'groupadd -g 40 squid'
8 'useradd -g squid -u 40 -d /var/squid -s /bin/false squid'
9 'passwd -l squid'
10
11 POST-INSTALL
12 1. add a cache_dir entry to /etc/squid/squid.conf:
13 cache_dir aufs /var/squid 2000 16 256
14 2. run '/usr/sbin/squid -z' to build the cache structure
15
16 PRECAUTION
17 1. all directories used by squid must be chown to
18 squid.squid or to the effective cache user/group defined
19 in squid.conf
|