[Django]-Configuration for setting up nginx with django and nodejs for websocket (wss://)

0👍

The wss presumes an encrypted WebSocket connection using TLS. If wss://host:8081 works, then your node.js listens for encrypted connections. But you have configured nginx for TLS termination and proxying unencrypted data.

👤VBart

Leave a comment