summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/source/cors.rst10
-rw-r--r--doc/source/oslo_config.rst4
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/source/cors.rst b/doc/source/cors.rst
index 890f7fd..11cb043 100644
--- a/doc/source/cors.rst
+++ b/doc/source/cors.rst
@@ -104,6 +104,16 @@ will add CORS support. To add multiple domains, simply add another filter.::
allow_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma,X-Custom-Header
expose_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma,X-Custom-Header
+If your application is using pastedeploy, but would also like to use the
+existing configuration from oslo_config in order to simplify the points of
+configuration, this may be done as follows.::
+
+ [filter:cors]
+ paste.filter_factory = oslo_middleware.cors:filter_factory
+ oslo_config_project = oslo_project_name
+
+ # Optional field, in case the program name is different from the project:
+ oslo_config_program = oslo_project_name-api
Configuration Options
---------------------
diff --git a/doc/source/oslo_config.rst b/doc/source/oslo_config.rst
index 09c83c6..6e772c6 100644
--- a/doc/source/oslo_config.rst
+++ b/doc/source/oslo_config.rst
@@ -29,6 +29,10 @@ The paste filter (in /etc/my_app/api-paste.ini) will looks like::
# the application configuration, by setting this:
# oslo_config_project = my_app
+ # In some cases, you may need to specify the program name for the project
+ # as well.
+ # oslo_config_program = my_app-api
+
The oslo.config file of the application (eg: /etc/my_app/my_app.conf) will looks like::
[oslo_middleware]