0.01
No commit activity in last 3 years
No release in over 3 years
Automatic port forwading via SSH tunneling.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0.3.1.pre.b
>= 0
>= 0

Runtime

>= 0
>= 0
 Project Readme

rack/tunnel

Automatic port forwading via SSH tunneling.

setup

Be sure to setup your ssh-agent for the SSH connection. If you plan on forwarding a well-known port (e.g. 80), add GatewayPorts=yes to your sshd_config file (and restart sshd!).

The SSH tunnel will be established on the first request to the rack server.

example

config.ru

require 'rack/tunnel'

use Rack::Tunnel, 'http://root@localhost'
run lambda {|env| [200, {'Content-Type' => 'text/plain'}, [env['X-Tunnel-Uri']]] }

rackup

% rackup config.ru -p 9292

irb

>> require 'rack/client'
=> true
>> Rack::Client.new("http://localhost:9292/").get("/").body
=> 'http://root@localhost'
>> Rack::Client.new("http://localhost/").get('/').status
=> 200

contributors