c4af8f0625
The module quantum_auth_token does not exist. Also, the documentation uses authtoken instead of authN. The docs, for reference: http://docs.openstack.org/incubation/openstack-network/admin/content/configuring-keystone-with-quantum.html Change-Id: I5a225dd740bb654a0b27937ebfa68f0ef6bff4f8
65 lines
1.9 KiB
Plaintext
65 lines
1.9 KiB
Plaintext
[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. Note that this can be a colon-separated list of
|
|
# paths. For example:
|
|
# api_extensions_path = extensions:/path/to/more/extensions:/even/more/extensions
|
|
# The __path__ of quantum.extensions is appended to this, so if your
|
|
# extensions are in there you don't need to specify them here
|
|
api_extensions_path =
|
|
|
|
[composite:quantum]
|
|
use = egg:Paste#urlmap
|
|
/: quantumversions
|
|
/v1.0: quantumapi_v1_0
|
|
/v1.1: quantumapi_v1_1
|
|
|
|
[pipeline:quantumapi_v1_0]
|
|
# By default, authentication is disabled.
|
|
# To enable Keystone integration comment out the
|
|
# following line and uncomment the next one
|
|
pipeline = extensions quantumapiapp_v1_0
|
|
# pipeline = authtoken extensions quantumapiapp_v1_0
|
|
|
|
[pipeline:quantumapi_v1_1]
|
|
# By default, authentication is disabled.
|
|
# To enable Keystone integration comment out the
|
|
# following line and uncomment the next one
|
|
pipeline = extensions quantumapiapp_v1_1
|
|
# pipeline = authtoken extensions quantumapiapp_v1_1
|
|
|
|
[filter:authtoken]
|
|
paste.filter_factory = keystone.middleware.auth_token:filter_factory
|
|
auth_host = 127.0.0.1
|
|
auth_port = 35357
|
|
auth_protocol = http
|
|
# auth_uri = http://127.0.0.1:5000/
|
|
admin_tenant_name = service
|
|
admin_user = nova
|
|
admin_password = sp
|
|
# admin_token = 9a82c95a-99e9-4c3a-b5ee-199f6ba7ff04
|
|
# memcache_servers = 127.0.0.1:11211
|
|
# token_cache_time = 300
|
|
|
|
[filter:extensions]
|
|
paste.filter_factory = quantum.extensions.extensions:plugin_aware_extension_middleware_factory
|
|
|
|
[app:quantumversions]
|
|
paste.app_factory = quantum.api.versions:Versions.factory
|
|
|
|
[app:quantumapiapp_v1_0]
|
|
paste.app_factory = quantum.api:APIRouterV10.factory
|
|
|
|
[app:quantumapiapp_v1_1]
|
|
paste.app_factory = quantum.api:APIRouterV11.factory
|