Allow cors from Github pages demo site

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

@ -211,7 +211,8 @@ class WebServer:
# Allow CORS for this domains
cors = aiohttp_cors.setup(app, defaults={
# Default web server for web gui dev
"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="*")
})
for method, route, handler in Route.get_routes():
log.debug("Adding route: {} {}".format(method, route))

Loading…
Cancel
Save