summaryrefslogtreecommitdiffstats
path: root/ipalib/constants.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-10-13 11:28:00 -0600
committerJason Gerard DeRose <jderose@redhat.com>2009-10-13 11:28:00 -0600
commitf58ff2921defef330d53e08e427a82ced7585c88 (patch)
treec69823174d27be31d4488a331b3fde176f8e2679 /ipalib/constants.py
parent1d6e23136a0664a86b765c67a9308f0951652f74 (diff)
downloadfreeipa-f58ff2921defef330d53e08e427a82ced7585c88.tar.gz
freeipa-f58ff2921defef330d53e08e427a82ced7585c88.tar.xz
freeipa-f58ff2921defef330d53e08e427a82ced7585c88.zip
Giant webui patch take 2
Diffstat (limited to 'ipalib/constants.py')
-rw-r--r--ipalib/constants.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index 9aff5e269..72b02b0a3 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -99,11 +99,23 @@ DEFAULT_CONFIG = (
('container_virtual', 'cn=virtual operations'),
# Ports, hosts, and URIs:
- ('lite_xmlrpc_port', 8888),
- ('lite_webui_port', 9999),
- ('xmlrpc_uri', 'http://localhost:8888'),
+ # FIXME: let's renamed xmlrpc_uri to rpc_xml_uri
+ ('xmlrpc_uri', 'http://localhost:8888/ipa/xml'),
+ ('rpc_json_uri', 'http://localhost:8888/ipa/json'),
('ldap_uri', 'ldap://localhost:389'),
+ # Web Application mount points
+ ('mount_ipa', '/ipa/'),
+ ('mount_xmlserver', 'xml'),
+ ('mount_jsonserver', 'json'),
+ ('mount_webui', 'ui/'),
+ ('mount_webui_assets', '_/'),
+
+ # WebUI stuff:
+ ('webui_prod', True),
+ ('webui_assets_dir', None),
+ ('webui_assets_dburi', None),
+
# Debugging:
('verbose', False),
('debug', False),