what is the correct syntax to declare ports in squid?
In Squid official says (edited):
acl SSL_ports port 443
acl Safe_ports port 80 # http
acl Safe_ports port 21 # ftp
acl Safe_ports port 443 # https
acl Safe_ports port 563 # snews
But debian says:
acl Safe_ports port 443 563 # https, snews
Question: I would like to know if the following rules would be correct. Example:
acl Safe_ports port 80 21 443 563 1025-65535
acl SSL_ports port 80 21 443 563 1025-65535
Thanks in advanced
0 Answers