From: Salvatore Orlando Date: Mon, 22 Aug 2011 15:57:43 +0000 (+0100) Subject: Accidentally took quantum.conf out of branch. X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=d4df7d1c30a59af1336e10fa3f7851baf1eb338a;p=openstack-build%2Fneutron-build.git Accidentally took quantum.conf out of branch. Now back in. --- diff --git a/etc/quantum.conf b/etc/quantum.conf new file mode 100644 index 000000000..8318b7a48 --- /dev/null +++ b/etc/quantum.conf @@ -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