mirror of
https://github.com/Kozea/Radicale.git
synced 2025-03-31 11:47:38 +03:00
10 lines
192 B
Python
10 lines
192 B
Python
"""
|
|
Radicale WSGI file (mod_wsgi and uWSGI compliant).
|
|
|
|
"""
|
|
|
|
import os
|
|
from radicale import application
|
|
|
|
# set an environment variable
|
|
os.environ.setdefault('SERVER_GATEWAY_INTERFACE', 'Web')
|