# virtual host configuration
# virtualhosts is a mapping of host names to a sequence of
# web application names that will be connected to the specified hostname.
# If a web application is not mentioned for any virtual host,
# it will NOT be loaded. A web app may be connected to multiple vhosts.
ENABLED=False # VHOST IS DISABLED BY DEFAULT
virtualhosts = {
"yourhost": [ "frog", "filemgr" ],
}
# webroots is a mapping of host names to the name of the web app
# that will be mapped in the URL root ( '/' ) of the server on
# that virtual host.
webroots = {
}
# alias vhosts
aliases = {
}
# defaultvhost is the name of the default virtual host
# (specified above) that will be used when the browser
# doesn't send a Host header.
defaultvhost = "yourhost"
|