/etc/zentyal/squid.conf is in zentyal-squid 2.3.3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # squid.conf - configuration file for zentyal-squid
#
# This file contains the most basic settings, most other stuff is configured
# using the web interface.
#
# Everything after a '#' character is ignored
#
# All whitespace is ignored
#
# Config keys are set this way:
#
# key = value
#
# They may contain comments at the end:
#
# key = value # this is ignored
# cache_mem [required]. Amount of memory to be used by squid (in MB)
cache_mem = 128
# maximum_object_size [required]. Maximum object size to be cached (in MB)
maximum_object_size = 300
# backup domain categorized lists.
# values: yes | no
backup_domain_categorized_lists = yes
# max_fd if this value set the maximum number of file descriptors wil be
# increased if needed at squid's start. If not set it will not be changed.
#max_fd= 167140
group = proxy
## Performance tuning ##
# do not change if you really know what are you doing
# DansGuardian parameters
maxchildren = 120
minchildren = 8
minsparechildren = 4
preforkchildren = 6
maxsparechildren = 32
maxagechildren = 500
|