implement config option to disable guest mode

This commit is contained in:
zefie
2021-08-07 21:08:51 -04:00
parent a37433132e
commit c539d408c9
6 changed files with 18 additions and 10 deletions

View File

@@ -17,7 +17,11 @@ If an absolute path (`wtv-url:/`, `file://` url, or `http(s)://` url) is not pas
```
"post_debug": true
```
If you would like to see debug information about realtime bytes received from a client POST request, set `post_debug` to true.
If you would like to see debug information about realtime bytes received from a client POST request, set `post_debug` to `true`.
```
"allow_guests": false
```
If you would like to require registration, disabling guest mode, you can set `allow_guests` to `false`. Default is `true`;
```
"post_percentages": [ 0, 25, 50, 100]
```