summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluccioman <luccioman@users.noreply.github.com>2018-11-08 08:39:32 +0100
committerGitHub <noreply@github.com>2018-11-08 08:39:32 +0100
commit8e72863a7f1464d7fe5de416864771069233df2b (patch)
tree093d2886d1b9c0d0e9ff3be572a85ca52231f832
parenta99713326023054769cc2fade536b59743a2d7cb (diff)
parent4a126881bbcf899a027920a3eded21679b752bb0 (diff)
Merge pull request #250 from theel0ja/patch-1
Improved formatting of markdown
-rw-r--r--README.md14
1 files changed, 9 insertions, 5 deletions
diff --git a/README.md b/README.md
index 0fb734ac6..bf6806cb9 100644
--- a/README.md
+++ b/README.md
@@ -76,12 +76,12 @@ NO OTHER SOFTWARE IS REQUIRED!
Startup and Shutdown of YaCy:
- on GNU/Linux and OpenBSD:
-to start: execute ./startYACY.sh
-to stop : execute ./stopYACY.sh
+ - to start: execute `./startYACY.sh`
+ - to stop : execute `./stopYACY.sh`
- on Windows:
-to start: double-click startYACY.bat
-to stop : double-click stopYACY.bat
+ - to start: double-click `startYACY.bat`
+ - to stop : double-click `stopYACY.bat`
- on Mac OS X:
please use the Mac Application and start or stop it like any
@@ -135,10 +135,14 @@ More details for YaCy on Heroku in [Heroku.md](Heroku.md).
## Port 8090 is bad, people are not allowed to access that port
You can forward port 80 to 8090 with iptables:
+```bash
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8090
+```
+
On some operation systems, you must first enable access to the ports you are using like:
+```bash
iptables -I INPUT -m tcp -p tcp --dport 8090 -j ACCEPT
-
+```
## How can I scale this; how much ram is needed; disk space?