added cors support into nova controller

Change-Id: Id156b7191230ba1564ce40a1d2c94525d2c29999
diff --git a/README.rst b/README.rst
index d6d5dd8..3b769f4 100644
--- a/README.rst
+++ b/README.rst
@@ -118,6 +118,21 @@
       ....
 
 
+Enable CORS parameters
+
+.. code-block:: yaml
+
+    nova:
+      controller:
+        cors:
+          allowed_origin: https:localhost.local,http:localhost.local
+          expose_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token
+          allow_methods: GET,PUT,POST,DELETE,PATCH
+          allow_headers: X-Auth-Token,X-Openstack-Request-Id,X-Subject-Token
+          allow_credentials: True
+          max_age: 86400
+
+
 Compute nodes
 -------------