diff options
author | Michael Krotscheck <krotscheck@gmail.com> | 2015-05-22 10:03:14 -0700 |
---|---|---|
committer | Michael Krotscheck <krotscheck@gmail.com> | 2015-05-26 09:33:18 -0700 |
commit | cab38ce307d1ebc34ba9ee6871acafaec28d75ee (patch) | |
tree | 104d74f989df14893686b6b9a4d2c367ef17044d /doc | |
parent | 06c44a87103377d10d929254ad115039290f977a (diff) | |
download | oslo-middleware-cab38ce307d1ebc34ba9ee6871acafaec28d75ee.tar.gz |
Added CORS wildcard handling1.3.0
The CORS specification permits the declaration of '*' as a response
wildcard domain, which explicitly allows _all_ domains to break
the single-origin policy. While we DO NOT recommend this method,
the ability to set a global policy should be included for the
sake of completeness.
Change-Id: Ifcc65ca74fa976dbd322a7ffd4ffba5443d1df5b
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/cors.rst | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/source/cors.rst b/doc/source/cors.rst index 00ed574..b47180c 100644 --- a/doc/source/cors.rst +++ b/doc/source/cors.rst @@ -6,6 +6,14 @@ This middleware provides a comprehensive, configurable implementation of the CORS_ (Cross Origin Resource Sharing) specification as oslo-supported python wsgi middleware. +.. note:: + + While this middleware supports the use of the `*` wildcard origin in the + specification, this feature is not recommended for security reasons. It + is provided to simplify basic use of CORS, practically meaning "I don't + care how this is used." In an intranet setting, this could lead to leakage + of data beyond the intranet and therefore should be avoided. + Quickstart ---------- First, include the middleware in your application:: @@ -46,10 +54,10 @@ legibility, we recommend using a reasonable human-readable string:: # CORS Configuration for horizon, which uses global options. allowed_origin=https://horizon.example.com:443 - [cors.dashboard] - # CORS Configuration for a hypothetical dashboard, which only permits - # HTTP GET requests. - allowed_origin=https://dashboard.example.com:443 + [cors.wildcard] + # CORS Configuration for the CORS specified domain wildcard, which only + # permits HTTP GET requests. + allowed_origin=* allow_methods=GET |