ref.
https://httpd.apache.org/docs/2.4/urlmapping.html#proxy
$ docker run -d -p 8080:80 --name my-app -v "$PWD":/var/www/html php:7.2-apache
SSHログイン
$ docker exec -it my-app /bin/bash
Apacheバージョン確認
apache2 -v
Server version: Apache/2.4.38 (Debian)
Server built: 2020-08-25T20:08:29
mod_proxy
とproxy_http
を有効化/etc/apache2/mods-availables/proxy.conf
に設定$ apache2ctl configtest
$ service apache2 restart
※ $ service apache2 restart
を実行したら、毎回なぜかコンテナが停止するので $ docker start
で再開。
http://localhost:8080にアクセスするとhttp://example.comの内容が表示された。
mod_proxy
はデフォルトで有効なのでproxy_http
を有効化。
$ a2enmod proxy_http
# If you want to use apache2 as a forward proxy, uncomment the
# 'ProxyRequests On' line and the <Proxy *> block below.
# WARNING: Be careful to restrict access inside the <Proxy *> block.
# Open proxy servers are dangerous both to your network and to the
# Internet at large.
#
# If you only want to use apache2 as a reverse proxy/gateway in
# front of some web application server, you DON'T need
# 'ProxyRequests On'.
#ProxyRequests On
#<Proxy *>
# AddDefaultCharset off
# Require all denied
# #Require local
#</Proxy>
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
#ProxyVia Off
ProxyRequests Off
<Proxy *>
Require all granted
</Proxy>
ProxyPass / http://example.com/
ProxyPassReverse / http://example.com/
</IfModule>
上記のように記載して保存すると自動で先頭に<IfModule mod_proxy.c>
が追加されるよう?
ref.
https://www.server-world.info/query?os=Ubuntu_16.04&p=httpd2&f=5
No comments yet.
改行と段落タグは自動で挿入されます。
メールアドレスは表示されません。