Squid : リバースプロキシの設定2020/11/12 |
Squid のリバースプロキシとしての設定です。
Squid をリバースプロキシとして Web サーバーの前面にたてることで、処理性能の向上やサーバーのセキュリティ向上に役立ちます。 |
|
[1] | |
[2] | Squid の設定です。 |
[root@prox ~]#
vi /etc/squid/squid.conf # 57行目:追記 (http アクセス全て許可) http_access allow all # And finally deny all other access to this proxy http_access deny all # 62行目:以下のように変更 (defaultsite は転送先 Web サーバを指定) # http_port 3128
http_port 80 accel defaultsite=www.srv.world
https_port 443 accel defaultsite=www.srv.world cert=/etc/letsencrypt/live/prox.srv.world/fullchain.pem key=/etc/letsencrypt/live/prox.srv.world/privkey.pem # 66行目:コメント解除 # 数字の意味 ⇒ [ディスクキャッシュサイズ] [第1階層のディレクトリ数] [第2階層のディレクトリ数] cache_dir ufs /var/spool/squid 100 16 256 # 最終行に追記 cache_peer www.srv.world parent 80 0 no-query originserver
# メモリキャッシュサイズ cache_mem 256 MB
# ホスト名定義 visible_hostname prox.srv.world
systemctl enable --now squid |
[3] | Firewalld を有効にしている場合は、HTTP/HTTPS サービスの許可が必要です。 |
[root@prox ~]# firewall-cmd --add-service={http,https} --permanent success [root@prox ~]# firewall-cmd --reload success |
[4] | ローカルネットワーク内の DNS の設定や、必要であればルーターの設定を変更して、Squid のサーバーで HTTP/HTTPS アクセスを受け付けるように設定変更します。変更後、クライアントコンピューター等から Web ブラウザーで Squid のサーバーへアクセスし、以下のように設定したバックエンドサーバーが応答することを確認しておきます。 |
Sponsored Link |