Skip to content

Commit 8ed609e

Browse files
authored
docs: updates server arguments (#606)
add missed arguments: - IP address - Max stream size - Telegram bot token - FUSE mount path - WebDAV support Signed-off-by: Pavel Pikta <devops@pavelpikta.com>
1 parent 19e4f4e commit 8ed609e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ On FreeBSD (TrueNAS/FreeNAS) you can use this plugin: <https://github.com/filka9
158158
### Server args
159159

160160
- `--port PORT`, `-p PORT` - web server port (default 8090)
161+
- `--ip IP`, `-i IP` - web server addr (default empty, binds to all interfaces)
161162
- `--ssl` - enables https for web server
162163
- `--sslport PORT` - web server https port (default 8091). If not set, will be taken from db (if stored previously) or the default will be used.
163164
- `--sslcert PATH` - path to ssl cert file. If not set, will be taken from db (if stored previously) or default self-signed certificate/key will be generated.
@@ -174,13 +175,17 @@ On FreeBSD (TrueNAS/FreeNAS) you can use this plugin: <https://github.com/filka9
174175
- `--pubipv4 PUBIPV4`, `-4 PUBIPV4` - set public IPv4 addr
175176
- `--pubipv6 PUBIPV6`, `-6 PUBIPV6` - set public IPv6 addr
176177
- `--searchwa`, `-s` - allow search without authentication
178+
- `--maxsize MAXSIZE`, `-m MAXSIZE` - max allowed stream size (in Bytes)
179+
- `--tg TGTOKEN`, `-T TGTOKEN` - telegram bot token
180+
- `--fuse FUSEPATH`, `-f FUSEPATH` - fuse mount path
181+
- `--webdav` - enable web dav
177182
- `--help`, `-h` - display this help and exit
178183
- `--version` - display version and exit
179184

180185
Example:
181186

182187
```bash
183-
TorrServer-darwin-arm64 [--port PORT] [--path PATH] [--logpath LOGPATH] [--weblogpath WEBLOGPATH] [--rdb] [--httpauth] [--dontkill] [--ui] [--torrentsdir TORRENTSDIR] [--torrentaddr TORRENTADDR] [--pubipv4 PUBIPV4] [--pubipv6 PUBIPV6] [--searchwa]
188+
TorrServer-darwin-arm64 [--port PORT] [--ip IP] [--path PATH] [--logpath LOGPATH] [--weblogpath WEBLOGPATH] [--rdb] [--httpauth] [--dontkill] [--ui] [--torrentsdir TORRENTSDIR] [--torrentaddr TORRENTADDR] [--pubipv4 PUBIPV4] [--pubipv6 PUBIPV6] [--searchwa] [--maxsize MAXSIZE] [--tg TGTOKEN] [--fuse FUSEPATH] [--webdav]
184189
```
185190

186191
### Running in Docker & Docker Compose

0 commit comments

Comments
 (0)