This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandaye/mandaye/config.py

20 lines
417 B
Python

from dispatchers.default import Dispatcher
host = "127.0.0.1"
port = 8088
# Needed if ssl is activate
ssl = True
keyfile = "/home/jschneider/wildcard.entrouvert.org.key"
certfile = "/home/jschneider/wildcard.entrouvert.org.crt"
hosts = {
'sfd.local:8088': [
(r'/', Dispatcher('http://www.sfdiabete.org/')),
],
'linuxfr.local:8088': [
(r'/', Dispatcher('http://liuxfr.org/')),
],
}