1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-08-01 18:18:31 +00:00
Radicale/radicale.fcgi
2018-08-29 16:39:25 +02:00

17 lines
320 B
Python
Executable file

#!/usr/bin/env python3
"""
Radicale FastCGI Example.
Launch a Radicale FastCGI server according to configuration.
This script relies on flup but can be easily adapted to use another
WSGI-to-FastCGI mapper.
"""
from flup.server.fcgi import WSGIServer
from radicale import application
WSGIServer(application).run()