From 63b93e5095967331e252441bc404c29543cf479c Mon Sep 17 00:00:00 2001
From: Masataka Kuwabara
Date: Mon, 2 May 2016 12:16:20 +0900
Subject: [PATCH] Mention about secure usage in readme. #14
---
README.md | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/README.md b/README.md
index ce62510..e9d2d60 100644
--- a/README.md
+++ b/README.md
@@ -177,6 +177,24 @@ $ xdg-open 'http://example.com' # Same as lemonade open 'http://example.com'
```
+### Secure TCP Connection
+
+Lemonade doesn't provide encryption and authorization.
+However we can use `SSH Port forwarding` for the purpose.
+
+lemonade server
+
+```sh
+$ lemonade server -allow 127.0.0.1 &
+$ ssh -R 2489:127.0.0.1:2489 user@host
+```
+
+See:
+
+- [SSH/OpenSSH/PortForwarding - Community Help Wiki](https://help.ubuntu.com/community/SSH/OpenSSH/PortForwarding)
+- [WOW! and security? · Issue #14 · pocke/lemonade](https://github.com/pocke/lemonade/issues/14#)
+
+
Links
-------