services/Tahoe-LAFS.md
... ...
@@ -15,13 +15,13 @@ To provide storage to the cloud you have to run a node.
15 15
## Notwendige Software und Einstellungen
16 16
To run a node you have to install tahoe-lafs at least in version 1.10. You can get source code from https://tahoe-lafs.org/source/tahoe-lafs/releases/allmydata-tahoe-1.10.0.zip, if the version of the package in the distribution not at least 1.10. Then you have to extract it and install with `python2 setup.py build && sudo python2 setup.py install`.
17 17
18
-Vor dem ersten Start wird ein Tahoe-LAFS-Knoten mit `bin/tahoe create-node` oder `mit bin/tahoe create-client` ein reiner Client (ohne eigenen Storage) erzeugt. Dabei wird ein `.tahoe`-Ordner im home-Verzeichnis angelegt. In dessen `tahoe.cfg`-Datei muss dann noch unter `introducer.furl` ein Link zu unserer Wolke eingefügt werden:
18
+Before the first start you have to create a node with `bin/tahoe create-node` or a client (doesn't provide storage) with `bin/tahoe create-client`. This will create the folder .tahoe in your home dir. In the file .tahoe/tahoe.cfg you have to enter on `introducer.furl` the link to our introducer node:
19 19
20 20
```
21
-introducer.furl = pb://rzovwxeiykc6f6usyhqphpyn4nik5nzt@introducer.tahoe-lafs.services.ffhb:44411/introducer
21
+introducer.furl = pb://[email protected]:44411/introducer
22 22
```
23 23
24
-Mit `bin/tahoe start` wird der lokale Knoten dann gestartet.
24
+With `bin/tahoe start` you start your local node.
25 25
26 26
## Client
27 27
You can reach the local node via web browser at [http://localhost:3456](http://localhost:3456).