RHEL7 apache httpd proxy設定整理
参考URL
構成
・ネットワーク構成
client ⇒[https]⇒ proxy ⇒[https]⇒ server
・証明書構成
proxy用-CA ①
├ proxy用-サーバ証明書 ②
└ proxy用-秘密鍵 ③
server用-CA ④
├ server用-サーバ証明書 ⑤
└ server用-秘密鍵 ⑥
・ソフトウェア構成
client
└ Windows
proxy
├ RHEL7.5
└ apache 2.4(httpd-2.4.6-80.el7.x86_64)
client
├ RHEL7.5
└ apache 2.4(httpd-2.4.6-80.el7.x86_64)
設定
抜粋して記載
Client
proxy用-CA ①をインストール
Proxy
ProxyRequests off
SSLProxyEngine on
SSLProxyVerify require #proxy⇒serverのサーバ認証無視させない
ProxyPass / https://server01b.rhel.local/
ProxyPassReverse / https://server01b.rhel.local/
SSLCertificateFile /root/ssl.crt #proxy用-サーバ証明書 ②
SSLCertificateKeyFile /root/ssl.key #proxy用-秘密鍵 ③
SSLProxyCACertificateFile /root/ca.crt #server用-CA ④
Server
SSLCertificateFile /root/ssl.crt #server用-サーバ証明書 ⑤
SSLCertificateKeyFile /root/ssl.key #server用-秘密鍵 ⑥
SSLProxyCACertificateFile を忘れそうだったので、メモ。
ReverseProxy構成にて、X-Forwarded-Forの値によって接続拒否設定
2.2系での手法
<Location "/">
SetEnvIf X-Forwarded-For '172.16.0.40' deny_ip
SetEnvIf X-Forwarded-For '172.16.0.41' deny_ip
order deny,allow
deny from env=deny_ip
</Location>
2.4系での手法
RemoteIPHeader X-Forwarded-For
RemoteIPInternalProxy 172.0.0.0/8
<Location "/">
<RequireAll>
Require all granted
Require not ip 172.16.0.40
</RequireAll>
</Location>
ReverseProxy構成、Virtualhostの理解
http.conf
<VirtualHost Proxy01:443> ※リッスンホスト名:Port番号
ServerName hogehoge.co.jp:443 ※リクエストURL名:Port番号
:
<snip>
:
</VirtualHost>
<VirtualHost Proxy01:443> ※リッスンホスト名:Port番号
ServerName usausa.co.jp:443 ※リクエストURL名:Port番号
:
<snip>
:
</VirtualHost>
<VirtualHost Proxy01:443> ※リッスンホスト名:Port番号
ServerName hogehoge.co.jp:443 ※リクエストURL名:Port番号
:
<snip>
:
</VirtualHost>
<VirtualHost Proxy01:443> ※リッスンホスト名:Port番号
ServerName usausa.co.jp:443 ※リクエストURL名:Port番号
:
<snip>
:
</VirtualHost>
Author And Source
この問題について(RHEL7 apache httpd proxy設定整理), 我々は、より多くの情報をここで見つけました https://qiita.com/hakoritenshi/items/2237cd3c33d513f20cad著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .