mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
extend doc related to config options used
This commit is contained in:
parent
a5dd4d8a7d
commit
51960bcab8
1 changed files with 18 additions and 0 deletions
|
@ -672,6 +672,24 @@ python3 -m radicale --server-hosts 0.0.0.0:5232,[::]:5232 \
|
|||
Add the argument `--config ""` to stop Radicale from loading the default
|
||||
configuration files. Run `python3 -m radicale --help` for more information.
|
||||
|
||||
One can also use command line options in startup scripts using following examples:
|
||||
|
||||
```bash
|
||||
## simple variable containing multiple options
|
||||
RADICALE_OPTIONS="--logging-level=debug --config=/etc/radicale/config --logging-request-header-on-debug --logging-rights-rule-doesnt-match-on-debug"
|
||||
/usr/bin/radicale $RADICALE_OPTIONS
|
||||
|
||||
## variable as array method #1
|
||||
RADICALE_OPTIONS=("--logging-level=debug" "--config=/etc/radicale/config" "--logging-request-header-on-debug" "--logging-rights-rule-doesnt-match-on-debug")
|
||||
/usr/bin/radicale ${RADICALE_OPTIONS[@]}
|
||||
|
||||
## variable as array method #2
|
||||
RADICALE_OPTIONS=()
|
||||
RADICALE_OPTIONS+=("--logging-level=debug")
|
||||
RADICALE_OPTIONS+=("--config=/etc/radicale/config")
|
||||
/usr/bin/radicale ${RADICALE_OPTIONS[@]}
|
||||
```
|
||||
|
||||
In the following, all configuration categories and options are described.
|
||||
|
||||
#### server
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue