dockerfile for new server

This commit is contained in:
idk
2018-08-08 16:51:18 -04:00
parent ff3b879d88
commit 55062cab15
5 changed files with 84 additions and 32 deletions

View File

@@ -55,7 +55,7 @@ Usage of ./bin/ephsite:
-samport string
SAM port (default "7656")
-save
Use saved file and persist tunnel(If false, tunnel will not persist after program is stopped. (default true)
Use saved file and persist tunnel(If false, tunnel will not persist after program is stopped.
-udp
UDP mode(true or false)
-zeroin
@@ -63,3 +63,58 @@ Usage of ./bin/ephsite:
-zeroout
Allow zero-hop, non-anonymous tunnels out(true or false)
```
eephttpd - Static file server automatically forwarded to i2p
============================================================
eephttpd is a static http server which automatically runs on i2p with
the help of the SAM bridge. By default it will only be available from
the localhost and it's i2p tunnel. It can be masked from the localhost
using a container.
```
flag needs an argument: -h
Usage of ./bin/eephttpd:
-c Use an encrypted leaseset(true or false) (default true)
-d string
the directory of static files to host(default ./www) (default "./www")
-f string
Use an ini file for configuration (default "none")
-g Uze gzip(true or false) (default true)
-h string
hostname to serve on (default "127.0.0.1")
-i save i2p keys(and thus destinations) across reboots (default true)
-ib int
Set inbound tunnel backup quantity(0 to 5) (default 4)
-il int
Set inbound tunnel length(0 to 7) (default 3)
-iq int
Set inbound tunnel quantity(0 to 15) (default 8)
-iv int
Set inbound tunnel length variance(-7 to 7)
-n string
name to give the tunnel(default static-eepSite) (default "static-eepSite")
-ob int
Set outbound tunnel backup quantity(0 to 5) (default 4)
-ol int
Set outbound tunnel length(0 to 7) (default 3)
-oq int
Set outbound tunnel quantity(0 to 15) (default 8)
-ov int
Set outbound tunnel length variance(-7 to 7)
-p string
port to serve locally on (default "8100")
-r Reduce tunnel quantity when idle(true or false)
-rc int
Reduce idle tunnel quantity to X (0 to 5) (default 3)
-rt int
Reduce tunnel quantity after X (minutes) (default 10)
-s string
the directory to save the keys in(default ./) (default ".")
-sh string
sam host to connect to (default "127.0.0.1")
-sp string
sam port to connect to (default "7656")
-z Allow zero-hop, non-anonymous tunnels(true or false)
```