1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-26 00:38:10 +00:00

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
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="*")
})