リバースプロクシの設定方法

変更前。
(この設定ファイルは WindowsApache)

<IfModule mod_proxy.c>
  ProxyRequests Off

    <Proxy *>
      Require all granted
    </Proxy>
</IfModule>

変更後。

<IfModule mod_proxy.c>
  ProxyRequests Off

    <Proxy http://localhost:5000/>
      Require all granted
    </Proxy>

    ProxyPass / http://localhost:5000/
    ProxyPassReverse / http://localhost:5000/
</IfModule>