radicale/radicale.fcgi
2020-01-17 05:00:31 +01:00

18 lines
350 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
if __name__ == "__main__":
WSGIServer(application).run()