mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-24 17:28:08 +00:00
Allow cors from Github pages demo site
This commit is contained in:
parent
b07dcf552c
commit
c4ebdc0e37
@ -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…
Reference in New Issue
Block a user