Add 127.0.0.1:8080 in allowed CORS

This commit is contained in:
Julien Duponchelle 2016-05-25 11:36:39 +02:00
parent dbda3fc8fc
commit 0063fb4615
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -211,6 +211,7 @@ class WebServer:
# Allow CORS for this domains # Allow CORS for this domains
cors = aiohttp_cors.setup(app, defaults={ cors = aiohttp_cors.setup(app, defaults={
# Default web server for web gui dev # Default web server for web gui dev
"http://127.0.0.1:8080": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
"http://localhost:8080": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"), "http://localhost:8080": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*"),
"http://gns3.github.io": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*") "http://gns3.github.io": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*")
}) })