radicale/radicale.fcgi
2018-08-29 16:39:25 +02:00

18 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()