各社VPSサーバの比較と設定方法をわかりやすく説明します。初期費用、月額料金、最低利用期間、無料トライアル・返金制度の有り無し、サーバ設置場所、メモリー、HDD、OSなどの比較ができます。

VPS設定のつぼ ラピッドサイト Proxyサーバ(sqiud)

(1)Proxyサーバ sqiudのインストール
[root@vps ~]# yum -y install squid
(2)設定ファイルを修正
[root@vps ~]# vi /etc/squid/squid.conf

54行目 コメントを解除してWeb用Proxyのポート番号変更
# http_port 3128
 ↓
http_port 9987←適宜変更してください

1800行目 追加 (指定のIPアドレスのみアクセス許可にする場合)
acl lan src 111.222.111.222←適宜変更してください

1841行目 上記の変更をした場合こちらも追加
http_access allow manager localhost
http_access allow lan←この行をここに追加
http_access deny manager

2100行目 追加 ホスト名定義
visible_hostname proxy.vps-tora.com

1804行目 追加
acl SSL_ports port 443 563
acl SSL_ports port 22←この行をここに追加
acl Safe_ports port 80 # http

1814行目 追加
acl Safe_ports port 777 # multiling http
acl Safe_ports port 22 # ssh←この行をここに追加
acl CONNECT method CONNECT

接続元IPアドレスを隠蔽する(HTTP_X_FORWARDED_FORがUnknownになります)
2362行目 コメント解除してonをoffに

# forwarded_for on
 ↓
forwarded_for off

2579行目 追加
acl FTP proto FTP
always_direct allow FTP

匿名サーバー化
最終行へ4行追加

header_access Referer deny all
header_access X-Forwarded-For deny all
header_access Via deny all
header_access Cache-Control deny all

(3)squid起動
[root@vps ~]# /etc/rc.d/init.d/squid start
(4)squid自動起動設定
[root@vps ~]# chkconfig squid on