- SSH proxy via Apache - QuartzWikiということもできる様子
参考
準備
- ubuntu 16.04で確認
モジュールを有効にする
sudo a2enmod proxy
sudo a2enmod proxy_http
簡単な例
/etc/apache2/conf-enabled/node.conf
ProxyRequests Off
ProxyPass /node/ http://localhost:4000/
ProxyPassReverse /node/ http://localhost:4000/
-
/node
ではなく/node/
と書くところに注意!
アクセス元制限
/etc/apache2/conf-enabled/node.conf
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>