radicale.fcgi 350 B

1234567891011121314151617
  1. #!/usr/bin/env python3
  2. """
  3. Radicale FastCGI Example.
  4. Launch a Radicale FastCGI server according to configuration.
  5. This script relies on flup but can be easily adapted to use another
  6. WSGI-to-FastCGI mapper.
  7. """
  8. from flup.server.fcgi import WSGIServer
  9. from radicale import application
  10. if __name__ == "__main__":
  11. WSGIServer(application).run()