summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorJason Kölker <jason@koelker.net>2011-11-01 13:26:41 -0500
committerJason Kölker <jason@koelker.net>2011-11-01 13:26:41 -0500
commit997c2e8eb0ade364a8920dd085ec0e24f56182fb (patch)
tree5641d99a31163258d25be0af7da3f34b395359fa /etc
parent1a8fa72410cacaf2589544ecc161306de9d13766 (diff)
parent02c95aeb2ffe112f7b60a1d3c53cdde22bc5db4d (diff)
downloadoslo-997c2e8eb0ade364a8920dd085ec0e24f56182fb.tar.gz
oslo-997c2e8eb0ade364a8920dd085ec0e24f56182fb.tar.xz
oslo-997c2e8eb0ade364a8920dd085ec0e24f56182fb.zip
merge in upstream
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