mirror of
https://github.com/Kozea/Radicale.git
synced 2025-07-02 16:58:30 +00:00
Update user documentation with latest code changes
This commit is contained in:
parent
0b7d42c230
commit
e85ff654d3
1 changed files with 21 additions and 4 deletions
|
@ -141,13 +141,21 @@ Configuring Server
|
||||||
Configuration File
|
Configuration File
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
This section is following the latest git master changes. Please look at the
|
||||||
|
default configuration file included in your package if you have an older
|
||||||
|
version of Radicale.
|
||||||
|
|
||||||
The server configuration can be modified in ``/etc/radicale/config`` or in
|
The server configuration can be modified in ``/etc/radicale/config`` or in
|
||||||
``~/.config/radicale/config``. Here is the default configuration file, with the
|
``~/.config/radicale/config``. Here is the default configuration file, with the
|
||||||
main parameters::
|
main parameters::
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
# CalDAV server hostname, empty for all hostnames
|
# CalDAV server hostnames separated by a comma
|
||||||
host =
|
# IPv4 syntax: address:port
|
||||||
|
# IPv6 syntax: [address]:port
|
||||||
|
# IPv6 adresses are configured to only allow IPv6 connections
|
||||||
|
hosts = 0.0.0.0:5232
|
||||||
# CalDAV server port
|
# CalDAV server port
|
||||||
port = 5232
|
port = 5232
|
||||||
# Daemon flag
|
# Daemon flag
|
||||||
|
@ -167,8 +175,8 @@ main parameters::
|
||||||
|
|
||||||
[acl]
|
[acl]
|
||||||
# Access method
|
# Access method
|
||||||
# Value: fake | htpasswd
|
# Value: None | htpasswd
|
||||||
type = fake
|
type = None
|
||||||
# Personal calendars only available for logged in users (if needed)
|
# Personal calendars only available for logged in users (if needed)
|
||||||
personal = False
|
personal = False
|
||||||
# Htpasswd filename (if needed)
|
# Htpasswd filename (if needed)
|
||||||
|
@ -182,6 +190,15 @@ main parameters::
|
||||||
# created if not present
|
# created if not present
|
||||||
folder = ~/.config/radicale/calendars
|
folder = ~/.config/radicale/calendars
|
||||||
|
|
||||||
|
[logging]
|
||||||
|
# Logging configuration file
|
||||||
|
# If no config is given, simple information is printed on the standard output
|
||||||
|
# For more information about the syntax of the configuration file, see:
|
||||||
|
# http://docs.python.org/library/logging.config.html
|
||||||
|
config = /etc/radicale/logging
|
||||||
|
# Set the default logging level to debug
|
||||||
|
debug = False
|
||||||
|
|
||||||
This configuration file is read each time the server is launched. If some
|
This configuration file is read each time the server is launched. If some
|
||||||
values are not given, the default ones are used. If no configuration file is
|
values are not given, the default ones are used. If no configuration file is
|
||||||
available, all the default values are used.
|
available, all the default values are used.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue