• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn tạo proxy server trên VPS chi tiết

Admin

Well-Known Member
Staff member
Administrator
Thông thường các bạn muốn dùng proxy để download hoặc vượt tường lửa hay thử nghiệm cái gì đó thì đa số tìm các proxy free trên mạng, những proxy free thì đa số rất chậm và nhanh die do nhiều người dùng
Nếu bạn có môt con VPS thì tội gì không tạo một proxy server để dùng cho tiện.
Mình hay download phim trên fshare cho nên proxy dùng thường xuyên, tất nhiên là dùng cả trên điện thoại
Để cài đặt một proxy server trên VPS tốt nhất là dùng Squid vì nó rất dễ cấu hình và nhiều tính năng hay.

Hướng dẫn cài đặt Squid trên centos .
Code:
yum -y install squid
Code:
chkconfig squid on

Chỉnh sửa cấu hình.
Code:
nano /etc/squid/squid.conf
Mặc định port là 3128 các bạn sửa lại dòng này
Code:
http_port 3128

Thiết lập anonymous thêm các dòng dưới vào cuối.
Code:
via off
forwarded_for off

request_header_access Allow allow all
request_header_access Authorization allow all
request_header_access WWW-Authenticate allow all
request_header_access Proxy-Authorization allow all
request_header_access Proxy-Authenticate allow all
request_header_access Cache-Control allow all
request_header_access Content-Encoding allow all
request_header_access Content-Length allow all
request_header_access Content-Type allow all
request_header_access Date allow all
request_header_access Expires allow all
request_header_access Host allow all
request_header_access If-Modified-Since allow all
request_header_access Last-Modified allow all
request_header_access Location allow all
request_header_access Pragma allow all
request_header_access Accept allow all
request_header_access Accept-Charset allow all
request_header_access Accept-Encoding allow all
request_header_access Accept-Language allow all
request_header_access Content-Language allow all
request_header_access Mime-Version allow all
request_header_access Retry-After allow all
request_header_access Title allow all
request_header_access Connection allow all
request_header_access Proxy-Connection allow all
request_header_access User-Agent allow all
request_header_access Cookie allow all
request_header_access All deny all

Thiết lập cho phép chỉ máy bạn truy cập được proxy thêm dòng sau vào phần acl localnet src
acl localnet src ip.cua.may.ban
ví dụ
Code:
acl localnet src 192.168.1.1
Nếu bạn cho phép ai cũng dùng được proxy chẳng hạn chia sẻ trên cho anh em dùng thì chỉnh dòng này
Code:
http_access deny all
Thành
Code:
http_access allow all
Lưu lại và Khởi động lại squid

Code:
service squid restart

Bây giờ bạn có thể dùng proxy đó để lướt web, download và dùng vào những việc bạn muốn mà không phải đi tìm các proxy free củ chuối trên mạng rồi.
Chúc các bạn thành công!
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top