mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-03 21:27:36 +03:00
Fix FCGI and WSGI scripts
This commit is contained in:
parent
7a7e67106a
commit
5b5edaac2f
3 changed files with 9 additions and 9 deletions
|
@ -22,9 +22,9 @@ Radicale WSGI file (mod_wsgi and uWSGI compliant).
|
|||
"""
|
||||
|
||||
import os
|
||||
import radicale
|
||||
from radicale import Application, config, log
|
||||
|
||||
|
||||
configuration = radicale.config.load([os.environ.get("RADICALE_CONFIG")])
|
||||
logger = radicale.log.start()
|
||||
application = radicale.Application(configuration, logger)
|
||||
configuration = config.load([os.environ.get("RADICALE_CONFIG")])
|
||||
logger = log.start()
|
||||
application = Application(configuration, logger)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue