Updated Configuring Tachidesk Server (markdown)

Aria Moradi
2023-01-06 13:59:10 +03:30
parent 10e741ddc8
commit f6d36a40f4

@@ -15,7 +15,7 @@ The configuration file is written in HOCON. Google is your friend if you want to
### My Tachidesk data directory/downloads size is getting to big
- Set `server.downloadsPath` to the desired path, if you only need to change where downloads are stored. You have to move/remove the existing downloads manually.
- Set the special `server.rootDir` key if you need tachidesk to use a custom data directory path, refer to [this section](#overriding-tachidesk-servers-data-directory-path). You usually only need to set this when using custom setups like a portable version of Tachidesk or your if your User dir cannot be written to.
- Set the special `server.rootDir` key if you need tachidesk to use a custom data directory path, refer to [this section](#overriding-tachidesk-servers-data-directory-path).
## Configuration Options
### Server ip and port bindings
@@ -75,7 +75,10 @@ server.downloadsPath = ""
- `server.downloadsPath = ""` the path where manga downloads will be stored, if the value is empty, the default directory `downloads` inside [the data directory](https://github.com/Suwayomi/Tachidesk-Server/wiki/The-Data-Directory) will be used.
## Overriding configuration options with command-line arguments
You can override the above configuration options with command-line arguments. Use the pattern bellow.
You can override the above configuration options with command-line arguments.
You usually only need to set this when using custom setups like a portable version of Tachidesk or your if your User dir cannot be written to or your system administrator doesn't allow it.
Use the pattern bellow.
```
java -Dsuwayomi.tachidesk.config.<configuration option 1>=<configuration value 1> -Dsuwayomi.tachidesk.config.<configuration option 2>=<configuration value 2> ... -Dsuwayomi.tachidesk.config.<configuration option N>=<configuration value N> -jar <path to server jar>
```