在Apache2.4中使用反向代理

SSH proxy via Apache – QuartzWikiということもできる様子

请参考

    • Apache 2.4 で リバースプロキシの設定 – Qiita

 

    2.10 プロキシ機能

准备

    ubuntu 16.04で確認
sudo a2enmod proxy
sudo a2enmod proxy_http

简单的例子

ProxyRequests Off
ProxyPass /node/ http://localhost:4000/
ProxyPassReverse /node/ http://localhost:4000/

/nodeではなく/node/と書くところに注意!

访问来源限制

ProxyRequests Off
ProxyPass /node/ http://localhost:4000/
ProxyPassReverse /node/ http://localhost:4000/

<Proxy *>
  Order deny,allow 
  Allow from 192.168.0.70/32
</Proxy>

<Location /node/>
  Order allow,deny 
  Allow from 192.168.0.70/32
</Location>
广告
将在 10 秒后关闭
bannerAds