diff --git a/docs/web.rst b/docs/web.rst index 49d57a1bf0..4d3f1edf6f 100644 --- a/docs/web.rst +++ b/docs/web.rst @@ -633,7 +633,7 @@ Middleware usually calls an inner handler, but may do something other, like displaying *403 Forbidden page* or raising :exc:`HTTPForbidden` exception if user has no permissions to access underlying resource. Also middleware may render errors raised by handler, do -some pre- and post- processing like handling *CORS* and so on. +some pre- and post- processing and so on. .. versionchanged:: 0.14 @@ -680,6 +680,15 @@ mutable parameters. new signals but reuse existing only you are not affected. +CORS support +------------ + +*aiohttp.web* itself has no support for `Cross-Origin Resource +Sharing `_ +but there is aiohttp plugin for it: +`aiohttp_cors `_. + + Debug toolbar -------------