php - Setting up VPN so that web application can securely stream audio files -
we have web application (php) retrieves audio via local ip using flash (path file gotten mysql). ok, can't access files unless we're on local network (clearly). need set similar solution in remote office our current set won't work.
the main goal able navigate our hosted (rackspace) web application, , have able communicate audio servers in 2 remote locations (here , remote office).
we're looking @ vpn (openvpn) solutions seem complicated , potentially overkill (although secure). how can securely access audio our web app , able stream flash? detail information can provide. not sure kind of info needed.
you open ssh proxy remote server local box so:
ssh -nd 9999 user@host.com
use socks proxy (and it's encrypted on ssh) on port 9999. request pop out on remote server.
if web browser streaming audio you'll need browser request file local server, in turn fetches remote server on socks proxy. can achieved php script. can expand further if needed.
hope helps!
Comments
Post a Comment