Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
1 changed files with
12 additions and
0 deletions
-
docs/server.rst
|
|
@ -534,6 +534,18 @@ The Sanic application is then executed in the usual manner:: |
|
|
|
if __name__ == '__main__': |
|
|
|
app.run() |
|
|
|
|
|
|
|
It has been reported that the CORS support provided by the Sanic extension |
|
|
|
`sanic-cors <https://github.com/ashleysommer/sanic-cors>`_ is incomaptible with |
|
|
|
this package's own support for this protocol. To disable CORS support in this |
|
|
|
package and let Sanic take full control, initialize the server as follows:: |
|
|
|
|
|
|
|
sio = socketio.AsyncServer(async_mode='sanic', cors_allowed_origins=[]) |
|
|
|
|
|
|
|
On the Sanic side you will need to enable the `CORS_SUPPORTS_CREDENTIALS` |
|
|
|
setting in addition to any other configuration that you use:: |
|
|
|
|
|
|
|
app.config['CORS_SUPPORTS_CREDENTIALS'] = True |
|
|
|
|
|
|
|
Uvicorn, Daphne, and other ASGI servers |
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
|
|
|
|
|
|
|