Clean the WSGI and FastCGI files, include them in the source tarball (closes #569)
This commit is contained in:
parent
6e454afe1b
commit
fc6ef16253
@ -1 +1 @@
|
|||||||
include COPYING NEWS TODO config
|
include COPYING NEWS TODO config logging radicale.fcgi radicale.wsgi
|
||||||
|
@ -28,9 +28,7 @@ from flup.server.fcgi import WSGIServer
|
|||||||
import radicale
|
import radicale
|
||||||
|
|
||||||
|
|
||||||
radicale.log.start(radicale.config.get("logging", "config"))
|
radicale.log.start()
|
||||||
radicale.log.LOGGER.info("Starting Radicale FastCGI server")
|
radicale.log.LOGGER.info("Starting Radicale FastCGI server")
|
||||||
|
|
||||||
WSGIServer(radicale.Application()).run()
|
WSGIServer(radicale.Application()).run()
|
||||||
|
|
||||||
radicale.log.LOGGER.info("Stopping Radicale FastCGI server")
|
radicale.log.LOGGER.info("Stopping Radicale FastCGI server")
|
||||||
|
@ -23,4 +23,7 @@ Radicale WSGI file (mod_wsgi and uWSGI compliant).
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import radicale
|
import radicale
|
||||||
|
|
||||||
|
|
||||||
|
radicale.log.start()
|
||||||
application = radicale.Application()
|
application = radicale.Application()
|
||||||
|
Loading…
Reference in New Issue
Block a user