Accidentally took quantum.conf out of branch.

Now back in.
This commit is contained in:
Salvatore Orlando 2011-08-22 16:57:43 +01:00 committed by salvatore
parent e91e9ea81c
commit d4df7d1c30
1 changed files with 48 additions and 0 deletions

48
etc/quantum.conf Normal file
View File

@ -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