我有公共IP地址的VM(Ubuntu 10.04,Apache,CouchDB 1.0,...)。
答案 0 :(得分:2)
是的,转到Futon 配置并将bind_address
部分中的http
设置为0.0.0.0
或者,您也可以使用SSH。基本思路是从本地计算机转发到远程CouchDB:
ssh -L 5984:localhost:5984 remoteuser @ remotemachine
现在您可以从本地计算机通过http://localhost:5984/访问Futon。
答案 1 :(得分:2)
您也可以通过Apache代理:
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://localhost:5984/
ProxyPassReverse / http://localhost:5984/
您还应该能够使用RewriteRule上的[P]
标志执行此操作,假设已启用mod_proxy。