feat!: change default port and scope

BREAKING CHANGE: the default port is no longer random, but 6065. The default scope is now the current directory instead of the root directory.
This commit is contained in:
Henrique Dias
2024-07-29 10:11:02 +02:00
parent e7e9c3176d
commit ed23ca1820
4 changed files with 10 additions and 8 deletions
+3 -3
View File
@@ -57,7 +57,7 @@ The configuration can be provided as a YAML, JSON or TOML file. Below is an exam
```yaml
address: 0.0.0.0
port: 0
port: 6065
# TLS-related settings if you want to enable TLS directly.
tls: false
@@ -76,8 +76,8 @@ auth: true
# The directory that will be able to be accessed by the users when connecting.
# This directory will be used by users unless they have their own 'scope' defined.
# Default is "/".
scope: /
# Default is "." (current directory).
scope: .
# Whether the users can, by default, modify the contents. Default is false.
modify: true