]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Accidentally took quantum.conf out of branch.
authorSalvatore Orlando <salvatore.orlando@eu.citrix.com>
Mon, 22 Aug 2011 15:57:43 +0000 (16:57 +0100)
committersalvatore <>
Mon, 22 Aug 2011 15:57:43 +0000 (16:57 +0100)
Now back in.

etc/quantum.conf [new file with mode: 0644]

diff --git a/etc/quantum.conf b/etc/quantum.conf
new file mode 100644 (file)
index 0000000..8318b7a
--- /dev/null
@@ -0,0 +1,48 @@
+[DEFAULT]
+# Show more verbose log output (sets INFO log level output)
+verbose = True
+
+# Show debugging output in logs (sets DEBUG log level output)
+debug = True
+
+# Address to bind the API server
+bind_host = 0.0.0.0
+
+# Port the bind the API server to
+bind_port = 9696
+
+# Path to the extensions
+api_extensions_path = extensions
+
+[composite:quantum]
+use = egg:Paste#urlmap
+/: quantumversions
+/v0.1: quantumapi
+
+[pipeline:quantumapi]
+# To enable keystone integration comment the following line and
+# uncomment the next one
+pipeline = extensions quantumapiapp
+#pipeline = authN authZ extensions quantumapiapp
+
+[filter:authN]
+paste.filter_factory = quantum.common.authentication:filter_factory
+auth_host = 127.0.0.1
+auth_port = 5001
+auth_protocol = http
+# Not sure the admin token thing is right...
+#admin_token = 9a82c95a-99e9-4c3a-b5ee-199f6ba7ff04
+admin_user = admin
+admin_password = secrete
+
+[filter:authZ]
+paste.filter_factory = quantum.common.authorization:filter_factory
+
+[filter:extensions]
+paste.filter_factory = quantum.common.extensions:plugin_aware_extension_middleware_factory
+
+[app:quantumversions]
+paste.app_factory = quantum.api.versions:Versions.factory
+
+[app:quantumapiapp]
+paste.app_factory = quantum.api:APIRouterV01.factory