1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-06-26 16:45:52 +00:00

Use processes instead of threads

This commit is contained in:
Unrud 2020-01-15 18:43:23 +01:00 committed by GitHub
parent cedcc25800
commit b96c6e59e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ Example **uWSGI** configuration:
```ini
[uwsgi]
http-socket = 127.0.0.1:5232
threads = 8
processes = 8
plugin = python3
module = radicale
env = RADICALE_CONFIG=/etc/radicale/config
@ -29,7 +29,7 @@ env = RADICALE_CONFIG=/etc/radicale/config
Example **Gunicorn** configuration:
```shell
gunicorn --bind '127.0.0.1:5232' --threads 8 --env 'RADICALE_CONFIG=/etc/radicale/config' radicale
gunicorn --bind '127.0.0.1:5232' --workers 8 --env 'RADICALE_CONFIG=/etc/radicale/config' radicale
```
## Manage user accounts with the WSGI server