1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-07-05 17:08:29 +00:00
Radicale/wsgi.md

23 lines
779 B
Markdown
Raw Normal View History

2017-05-24 19:13:47 +02:00
---
layout: page
title: WSGI
permalink: /wsgi/
---
2017-06-04 15:39:49 +02:00
Radicale is compatible with the WSGI specification. Use `radicale.wsgi` from
the source code as the WSGI file.
A configuration file can be set with the `RADICALE_CONFIG` environment variable,
otherwise no configuration file is loaded and the default configuration is used.
Be reminded that Radicale's default configuration enforces limits on the
maximum upload file size.
2017-06-25 11:02:36 +02:00
**Security:** The `None` authentication type disables all rights checking.
Don't use it with `REMOTE_USER`. Use `remote_user` instead.
2017-06-25 11:02:36 +02:00
## Manage user accounts with the WSGI server
Set the configuration option `type` in the `auth` section to `remote_user`.
Radicale uses the user name provided by the WSGI server and disables
authentication over HTTP.