1squid(8) System Manager's Manual squid(8)
2
3
4
6 squid - HTTP web proxy caching server
7
9 squid [-dhisrvzCFNRSVYX] [-l facility ] [-f config-file ] [-[au] port ]
10 [-k signal ] [-n service-name ] [-O command-line ]
11
13 squid is a high-performance proxy caching server for web clients, sup‐
14 porting FTP, gopher, ICAP, ICP, HTCP and HTTP data objects. Unlike
15 traditional caching software, Squid handles all requests in a single,
16 non-blocking process.
17
18 Squid keeps meta data and especially hot objects cached in RAM, caches
19 DNS lookups, supports non-blocking DNS lookups, and implements negative
20 caching of failed requests.
21
22 Squid supports SSL, extensive access controls, and full request log‐
23 ging. By using the lightweight Internet Cache Protocols ICP, HTCP or
24 CARP, Squid caches can be arranged in a hierarchy or mesh for addi‐
25 tional bandwidth savings.
26
27 Squid consists of a main server program squid , some optional programs
28 for custom processing and authentication, and some management and
29 client tools. When squid starts up, it spawns a configurable number of
30 helper processes, each of which can perform parallel lookups. This
31 reduces the amount of time the cache waits for results.
32
33 Squid is derived from the ARPA-funded Harvest Project.
34
35 This manual page only lists the command line arguments. For details on
36 how to configure Squid see the file
37 /usr/share/doc/squid/squid.conf.documented, the Squid wiki FAQ and
38 examples at http://wiki.squid-cache.org/ , or the configuration manual
39 on the Squid home page http://www.squid-cache.org/Doc/config/
40
42 -a port Specify HTTP port number where Squid should listen for
43 requests, in addition to any http_port specifications in
44 squid.conf
45
46 -C Do not catch fatal signals.
47
48 -d level Write debugging to stderr also.
49
50 -f file Use the given config-file instead of /etc/squid/squid.conf
51 . If the file name starts with a ! or | then it is
52 assumed to be an external command or command line. Can for
53 example be used to pre-process the configuration before it
54 is being read by Squid. To facilitate this Squid also
55 understands the common #line notion to indicate the real
56 source file.
57
58 -F Don't serve any requests until store is rebuilt.
59
60 -h Print help message.
61
62 -i Install as a Windows Service (see -n option).
63
64 -k reconfigure | rotate | shutdown | interrupt | kill | debug | check |
65 parse
66 Parse configuration file, then send signal to running copy
67 (except -k parse ) and exit.
68
69 -l facility Use specified syslog facility. Implies -s
70
71 -n name Specify Windows Service name to use for service operations,
72 default is: Squid
73
74 -N No daemon mode.
75
76 --foreground
77 Parent process does not exit until its children have fin‐
78 ished. It has no effect with -N which does not fork/exit at
79 startup.
80
81 --kid roleID
82 Play a given SMP kid process role, with a given ID. Do not
83 use this option. It is meant for the master process use
84 only.
85
86 -O options Set Windows Service Command line options in Registry.
87
88 -r Remove a Windows Service (see -n option).
89
90 -R Do not set REUSEADDR on port.
91
92 -s Enable logging to syslog. Also configurable in
93 /etc/squid/squid.conf
94
95 -S Double-check swap during rebuild.
96
97 -u port Specify ICP port number (default: 3130), disable with 0.
98
99 -v Print version and build details.
100
101 -X Force full debugging.
102
103 -Y Only return UDP_HIT or UDP_MISS_NOFETCH during fast reload.
104
105 -z Create missing swap directories and other missing cache_dir
106 structures, then exit. All cache_dir types create the con‐
107 figured top-level directory if it is missing. Other actions
108 are type-specific. For example, ufs-based storage systems
109 create missing L1 and L2 directories while Rock creates the
110 missing database file.
111
112 This option does not enable validation of any present swap
113 structures. Its focus is on creation of missing pieces. If
114 nothing is missing, squid -z just exits. If you suspect
115 cache_dir corruption, you must delete the top-level
116 cache_dir directory before running squid -z.
117
118 By default, squid -z runs in daemon mode (so that configu‐
119 ration macros and other SMP features work as expected). Use
120 -N option to overwrite this.
121
123 Squid configuration files located in /etc/squid/:
124
125 squid.conf
126 The main configuration file. You must initially make changes to
127 this file for squid to work. For example, the default configura‐
128 tion only allows access from RFC private LAN networks. Some
129 packaging distributions block even that.
130
131 squid.conf.default
132 Reference copy of the configuration file. Always kept up to date
133 with the version of Squid you are using.
134
135 Use this to look up the default configuration settings and syn‐
136 tax after upgrading.
137
138 squid.conf.documented
139 Reference copy of the configuration file. Always kept up to date
140 with the version of Squid you are using.
141
142 Use this to read the documentation for configuration options
143 available in your build of Squid. The online configuration man‐
144 ual is also available for a full reference of options. see‐
145 http://www.squid-cache.org/Doc/config/
146
147 cachemgr.conf
148 The main configuration file for the web cachemgr.cgi tools.
149
150 msntauth.conf
151 The main configuration file for the Sample MSNT authenticator.
152
153 errorpage.css
154 CSS Stylesheet to control the display of generated error pages.
155 Use this to set any company branding you need, it will apply to
156 every language Squid provides error pages for.
157
158 Some files also located elsewhere:
159
160 /etc/squid/mime.conf (mime_table)
161 MIME type mappings for FTP gatewaying
162
163 /usr/share/squid/errors
164 Location of Squid error pages and templates.
165
167 Squid was written over many years by a changing team of developers and
168 maintained in turn by Duane Wessels <duane@squid-cache.org> Henrik
169 Nordstrom <hno@squid-cache.org> Amos Jeffries <amosjeffries@squid-
170 cache.org>
171
172 With contributions from many others in the Squid community. see CON‐
173 TRIBUTORS for a full list of individuals who contributed code. see
174 CREDITS for a list of major code contributing copyright holders.
175
177 * Copyright (C) 1996-2019 The Squid Software Foundation and contribu‐
178 tors
179 *
180 * Squid software is distributed under GPLv2+ license and includes
181 * contributions from numerous individuals and organizations.
182 * Please see the COPYING and CONTRIBUTORS files for details.
183
185 Questions on the usage of this program can be sent to the Squid Users
186 mailing list <squid-users@lists.squid-cache.org>
187
189 Bug reports need to be made in English. See http://wiki.squid-
190 cache.org/SquidFaq/BugReporting for details of what you need to include
191 with your bug report.
192
193 Report bugs or bug fixes using http://bugs.squid-cache.org/
194
195 Report serious security bugs to Squid Bugs <squid-bugs@lists.squid-
196 cache.org>
197
198 Report ideas for new improvements to the Squid Developers mailing list
199 <squid-dev@lists.squid-cache.org>
200
202 cachemgr.cgi (8), squidclient (1), basic_pam_auth (8), basic_ldap_auth
203 [1m(8), ext_ldap_group_acl (8), ext_session_acl (8), ext_unix_group_acl
204 [1m(8),
205 The Squid FAQ wiki http://wiki.squid-cache.org/SquidFaq
206 The Squid Configuration Manual http://www.squid-cache.org/Doc/config/
207
208
209
210 squid(8)