crossroads

Git mirror of https://crossroads.e-tunity.com/
git clone git://git.finwo.net/app/crossroads
Log | Files | Refs

t3.conf (267B)


      1 /* Another testing scenario.
      2  * This one forwards port 23 to localhost:22 (sshd), and logs out
      3  * after 10 secs of inactivity. */
      4 
      5 service ssh {
      6     port 23;
      7     connectiontimeout 10;
      8     verbosity true;
      9     backend a {
     10 	verbosity true;
     11 	server localhost:22;
     12     }
     13 }