1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00

Use TOML instead of INI highlight syntax

This commit is contained in:
Guillaume Ayoub 2017-05-27 12:41:26 +02:00
parent 247700ebe2
commit ed428fdbc1
4 changed files with 10 additions and 10 deletions

View file

@ -8,7 +8,7 @@ Radicale can be configured with a configuration file or with
command line arguments.
An example configuration file looks like:
```ini
```toml
[server]
hosts = 0.0.0.0:5232 # Bind all addresses
@ -251,6 +251,6 @@ In this section additional HTTP headers that are sent to clients can be
specified.
An example to relax the same-origin policy:
```ini
```toml
Access-Control-Allow-Origin = *
```