I have a Shiny application in a Docker container hosted on Microsoft Azure WebApp. The application doesn't work anymore when log in with Azure Active Directory is activated.
The application page is accessible but a error 500 is returned on websocket content as shown on the Firefox network trace. This error is not present without log in with AAD.
I've tried adding the following options to /etc/shiny-server/shiny-server.conf
:
sanitize_errors off;
disable_protocols websocket xdr-polling;
This did not solve the issue, the network trace are unchanged. How can I force Shiny not to use websocket?