Mariano, For nginx, this is how we do the tunneling: server { listen 8181; server_name localhost; access_log /var/log/nginx/tunnel.log; location / { proxy_pass https://secret.server.somewhere; } } On 15 Nov 2013, at 19:19, Mariano Martinez Peck <marianopeck at gmail.com> wrote: > Probably I could experiment a bit (I have a server running in nginx)..