On Sat, Nov 28, 2015 at 12:59:46AM +0100, Ludovic Courtès wrote: > Commit adds ‘tor-hidden-service’, which can be used to specify hidden > services quite easily. > > For example, to have your SSH daemon accessible over something.onion:22, > just do: > > (operating-system > ;; … > (services (cons* (lsh-service #:interfaces '("127.0.0.1")) > (tor-hidden-service "ssh" '((22 "127.0.0.1:22"))) > (tor-service) > %desktop-services))) > > and then you can: > > torify ssh something.onion > > from anywhere.
That's awesome! Thanks for making this service. Are there any technical advantages to using lsh instead of OpenSSH, or is the primary advantage the copyleft license?