9271654adf
More specifically uses global CONF for the quantum.conf file. Added support for the RYU plugin (similar to ovs and lb, which use non-global conf for plugins) patch 27: clean up find_config_file patch 28: for config file use old paths (plugin unit tests) this hopefully will be replaced when we move to common config file patch 30: rebase and merge (utils.py and policy.py) Change-Id: Ic0bf5bdd44f24a557240f7afe4e070dee448c63c
25 lines
619 B
Plaintext
25 lines
619 B
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 = False
|
|
|
|
# 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 = unit/extensions
|
|
|
|
[pipeline:extensions_app_with_filter]
|
|
pipeline = extensions extensions_test_app
|
|
|
|
[filter:extensions]
|
|
paste.filter_factory = quantum.common.extensions:plugin_aware_extension_middleware_factory
|
|
|
|
[app:extensions_test_app]
|
|
paste.app_factory = quantum.tests.unit.test_extensions:app_factory
|