From a91e8fdb8b6c7ceb316741a4504edeb2a8bd9000 Mon Sep 17 00:00:00 2001 From: Unrud Date: Wed, 24 May 2017 21:12:18 +0200 Subject: [PATCH] WIP (use #608) --- configuration.md | 4 ++-- tutorial.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configuration.md b/configuration.md index 80fd45b0..3f18a365 100644 --- a/configuration.md +++ b/configuration.md @@ -26,10 +26,10 @@ This behaviour can be overwritten by specifying a path with the The same example configuration via command line arguments looks like: ```sh -python3 -m radicale --config /dev/null --server-hosts 0.0.0.0:5232 --auth-type htpasswd --htpasswd-filename /path/to/htpasswd --htpasswd-encryption bcrypt +python3 -m radicale --config "" --server-hosts 0.0.0.0:5232 --auth-type htpasswd --htpasswd-filename /path/to/htpasswd --htpasswd-encryption bcrypt ``` -The ``--config /dev/null`` argument is required to stop Radicale from trying +The ``--config ""`` argument is required to stop Radicale from trying to load configuration files. Run ``python3 -m radicale --help`` for more information. In the following, all configuration categories and options are described. diff --git a/tutorial.md b/tutorial.md index 56123b88..e945b409 100644 --- a/tutorial.md +++ b/tutorial.md @@ -23,7 +23,7 @@ installed. On most distributions it should be enough to install the package Then open a console and type: $ python3 -m pip install --upgrade radicale - $ python3 -m radicale --config /dev/null --storage-filesystem-folder=~/.var/lib/radicale/collections + $ python3 -m radicale --config "" --storage-filesystem-folder=~/.var/lib/radicale/collections Victory! Open [http://localhost:5232/](http://localhost:5232/) in your browser and enjoy the "Radicale works!" message! @@ -39,7 +39,7 @@ click on "Install now". Wait a couple of minutes, it's done! Launch a command prompt and type: C:\Users\MyName> python -m pip install --upgrade radicale - C:\Users\MyName> python -m radicale --storage-filesystem-folder=~/radicale + C:\Users\MyName> python -m radicale --config "" --storage-filesystem-folder=~/radicale Victory! Open [http://localhost:5232/](http://localhost:5232/) in your browser and enjoy the "Radicale works!" message!