Linux與雲計算——第二階段 第一十一章:代理Proxy服務器架設—Squid配置反向代理

Linux與雲計算——第二階段Linux服務器架設

第一十一章:代理Proxy服務器架設—Squid配置反向代理

反向代理設置

[1] 配置Squid.

[root@server ~]# vim /etc/squid/squid.conf

# 54: 添加 ( 允許所有http訪問 )

http_access allow all

# line 63: 指定後端WEB服務器

http_port 80 accel defaultsite=client.example.com

# line 62: 取消註釋

# number means [disk cache size] [number of directories on top level] [number of directories on 2nd level]

cache_dir ufs /var/spool/squid 100 16 256

# 在最後部分添加

cache_peer client.example.com parent 80 0 no-query originserver

# memory cache size

cache_mem 256 MB

# define hostname

visible_hostname www.example.com

[root@server ~]# systemctl start squid

[root@server ~]# systemctl enable squid

[2] 通過瀏覽器訪問www.example.com進行驗證


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章