From 7ad1f985a6fda5713bddadd741ec729eec0edee7 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Sat, 15 Apr 2017 18:05:42 +0200 Subject: [PATCH] Use flup instead of flipflop to create the FastCGI application --- radicale.fcgi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/radicale.fcgi b/radicale.fcgi index 6e92b06..5e37670 100755 --- a/radicale.fcgi +++ b/radicale.fcgi @@ -21,14 +21,16 @@ 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. + """ import os -from flipflop import WSGIServer +from flup.server.fcgi import WSGIServer from radicale import Application, config, log configuration = config.load([os.environ.get("RADICALE_CONFIG")]) logger = log.start() WSGIServer(Application(configuration, logger)).run() -