If I concatenate the two files, I beleive it just appends the second file to the first at the bottom. Here is an example of my squid.conf file:
#create your own rules
#allowed URL's
acl domains dstdomain .example.com .whatever.com
http_access allow domains
This is what I want
#create your own rules
#allowd URL's
acl /etc/squid/domains
http_access allow domains
where domains is a file of domain names. Thanks
|