Add 127.0.0.1:8080 in allowed CORS

pull/565/head
Julien Duponchelle 8 years ago
parent dbda3fc8fc
commit 0063fb4615
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -211,6 +211,7 @@ class WebServer:
# Allow CORS for this domains
cors = aiohttp_cors.setup(app, defaults={
# 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://gns3.github.io": aiohttp_cors.ResourceOptions(expose_headers="*", allow_headers="*")
})

Loading…
Cancel
Save