Squid Deny_Info https가 작동하지 않습니다.

Squid Deny_Info https가 작동하지 않습니다.

Centos 8에서 Squid 프록시 서버를 구성했는데 제대로 작동합니다. 누구든지 차단된 URL에 액세스하면 Squid를 통해 일부 사이트를 차단했는데 페이지 브라우저가 페이지를 열 수 없다는 메시지만 표시됩니다. 나는 단지 ERROR_ACCESS를 원합니다. 이것이 내 구성입니다.

acl localnet src 200.200.200.0/24
acl localnet src 172.30.0.0/16

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 70      # gopher
acl Safe_ports port 210     # wais
acl Safe_ports port 1025-65535  # unregistered ports
acl Safe_ports port 280     # http-mgmt
acl Safe_ports port 488     # gss-http
acl Safe_ports port 591     # filemaker
acl Safe_ports port 777     # multiling http
acl CONNECT method CONNECT

http_access deny !Safe_ports

http_access deny CONNECT !SSL_ports

http_access allow localhost manager
http_access deny manager

acl badsite url_regex "/etc/squid/block"
http_access deny badsite all
deny_info ERR_ACCESS_DENIED badsite

http_access allow localnet
http_access allow localhost

http_access deny all

http_port 3128
cache_dir ufs /var/spool/squid 100 16 256

coredump_dir /var/spool/squid

refresh_pattern ^ftp:       1440    20% 10080
refresh_pattern ^gopher:    1440    0%  1440
refresh_pattern -i (/cgi-bin/|\?) 0 0%  0
refresh_pattern (Release|Packages(.gz)*)$      0       20%     2880
refresh_pattern .       0   20% 4

답변1

이것을 에 추가하십시오 squid.conf. 이렇게 하면 문제가 해결될 것입니다.

error_directory /usr/share/squid/errors/en/
deny_info ERR_ACCESS_DENIED badsite

error_directory 내용의 스크린샷

관련 정보