본문 바로가기

IT/Python

KakaoTalk Proxy Server

구축 환경

Server : 구름IDE
OS : Ubuntu 16.04 LTS
Proxy Server : Squid

CMD

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install squid3
sudo vi /etc/squid/squid.conf

  • #http_access allow manager localhost < -- 주석
  • #http_access deny manger < -- 주석
  • http_access allow all < -- 추가
  • http_port 8080 < -- defalult 3128 에서 ex)8080 change

sudo service squid restart

'IT > Python' 카테고리의 다른 글

Python을 활용하여 Slack MSG Send  (0) 2021.01.14
Windows 스케줄러 Python Script 사용  (0) 2021.01.14
Python Pyinstaller Control  (0) 2021.01.14
Python package environment settings  (0) 2021.01.14
Get it from Python Parameter Jenkins  (0) 2021.01.14