summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorRajaram Mallya <rajarammallya@gmail.com>2011-09-07 17:07:19 +0530
committerRajaram Mallya <rajarammallya@gmail.com>2011-09-07 17:07:19 +0530
commit2a529c6cb7cfed08a7afe8fc0f8249bc9bdb2621 (patch)
treecfd35e1300ccfba21740cb6aacd2f3bd607530bf /etc
parent96b9a548521cefb7c1b7dd5229c89b8fec53de85 (diff)
downloadoslo-2a529c6cb7cfed08a7afe8fc0f8249bc9bdb2621.tar.gz
oslo-2a529c6cb7cfed08a7afe8fc0f8249bc9bdb2621.tar.xz
oslo-2a529c6cb7cfed08a7afe8fc0f8249bc9bdb2621.zip
Vinkesh/Rajaram|Added nova's extension framework into common and tests for it
Diffstat (limited to 'etc')
-rw-r--r--etc/openstack-common.conf.test28
1 files changed, 28 insertions, 0 deletions
diff --git a/etc/openstack-common.conf.test b/etc/openstack-common.conf.test
new file mode 100644
index 0000000..89bdf2d
--- /dev/null
+++ b/etc/openstack-common.conf.test
@@ -0,0 +1,28 @@
+[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 server to
+bind_host = 0.0.0.0
+
+# Port the bind the server to
+bind_port = 80
+
+# Log to this file. Make sure the user running skeleton-api has
+# permissions to write to this file!
+log_file = /tmp/openstack-common.log
+
+# Send logs to syslog (/dev/log) instead of to file specified by `log_file`
+use_syslog = False
+
+[pipeline:extensions_app_with_filter]
+pipeline = extensions extensions_test_app
+
+[filter:extensions]
+paste.filter_factory = openstack.common.extensions:ExtensionMiddleware.factory
+
+[app:extensions_test_app]
+paste.app_factory = tests.unit.test_extensions:app_factory