SQUID 프록시 특정 사이트만 허용 또는 차단하기
squid proxy 서버 설정에서 특정 사이트만 허용하거나 아니면 특정 사이트만 차단을 할 수가 있다.
/etc/squid/squid.conf 파일에 아래와 같이 작성한 뒤에 systemctl restart squid
▶ 특정 사이트 허용하기 (방법1)
acl allow_dst dstdom_regex \.google.com$ \.google.co.kr$
http_access deny !allow_dst
http_access allow allow_dst
▶ 특정 사이트 허용하기 (방법2)
acl allow_dst dstdomain .facebook.com .naver.com .daum.net
http_access deny !allow_dst
http_access allow allow_dst
▶ 특정 사이트 차단하기 (방법1)
acl deny_dst dstdom_regex \.google.com$ \.google.co.kr$
http_access deny deny_dst
▶ 특정 사이트 차단하기 (방법2)
acl deny_dst dstdomain .facebook.com .naver.com .daum.net
http_access deny deny_dst
'VPS' 카테고리의 다른 글
해외 Alvotech VPS 소개 (0) | 2016.05.10 |
---|---|
CentOS 7.x BIND 네임서버(DNS) 설치 및 설정하기 (0) | 2016.05.09 |
Squid Proxy 트래픽 제한 걸기 (0) | 2016.04.19 |
CentOS 7.2 Squid 프록시 서버 설치 (20) | 2016.04.16 |
ConoHa VPS 커스텀 이미지 설치하는 방법 (21) | 2016.04.07 |