Amazon web services Squid版本4.13致命:无效的ACL类型';ssl::服务器名称';。如何仅允许某些http和https网站

Amazon web services Squid版本4.13致命:无效的ACL类型';ssl::服务器名称';。如何仅允许某些http和https网站,amazon-web-services,nat,squid,Amazon Web Services,Nat,Squid,我得到了致命错误:配置squid 4.13以仅对某些http和https网站进行白名单访问时,ACL类型“ssl::server_name”无效 My squid.config内容: # CUSTOM RULES #Handling HTTP requests # Squid normally listens to port 3128 http_port 5400 intercept acl allowed_http_sites dstdomain .amazonaws.com #acl all

我得到了致命错误:配置squid 4.13以仅对某些http和https网站进行白名单访问时,ACL类型“ssl::server_name”无效

My squid.config内容:

# CUSTOM RULES
#Handling HTTP requests
# Squid normally listens to port 3128
http_port 5400 intercept
acl allowed_http_sites dstdomain .amazonaws.com
#acl allowed_http_sites dstdomain domain_name [uncomment this line to add another domain]
http_access allow allowed_http_sites
#Handling HTTPS requests
https_port 3130 cert=/etc/squid/ssl/squid.pem ssl-bump intercept
#acl SSL_port port 443
http_access allow SSL_ports
acl allowed_https_sites ssl::server_name .amazonaws.com
acl allowed_https_sites ssl::server_name .gitlab.com
acl allowed_https_sites ssl::server_name pypi.org
acl allowed_https_sites ssl::server_name repo.anaconda.org
acl allowed_https_sites ssl::server_name conda.anaconda.org
#acl allowed_https_sites ssl::server_name [uncomment this line to add another website]
acl step1 at_step SslBump1
acl step2 at_step SslBump2
acl step3 at_step SslBump3
ssl_bump peek step1 all
ssl_bump peek step2 allowed_https_sites
ssl_bump splice step3 allowed_https_sites
ssl_bump terminate step2 all
错误消息:

: 2021/04/29 16:15:24| FATAL: Invalid ACL type 'ssl::server_name'
: 2021/04/29 16:15:24| FATAL: Bungled /etc/squid/squid.conf line 56: acl allowed_https_sites ssl::se...naws.com
: 2021/04/29 16:15:24| Squid Cache (Version 4.13): Terminated abnormally.
: CPU Usage: 0.006 seconds = 0.002 user + 0.004 sys
: Maximum Resident Size: 17808 KB
: Page faults with physical i/o: 0
: squid.service: control process exited, code=exited status=1
: Failed to start Squid caching proxy.
: Unit squid.service entered failed state.
: squid.service failed.
希望你能帮我找到丢失的部分