Configure ssl+Nginx (secure socket.io connection)
secure the nodejs app transmissions by ssl For quick reference: Deploy simple_socket_chat on fresh VPS, jump to buttom of this article 1. make a simplest socket.io app ref: https://socket.io/get-started/chat/ basic nodejs app: use the Node.JS web framework express to html as client end. create a package.json manifest file that describes our project npm install express@4.15.2 create an index.js file that will setup our application The index.js file supply the html content of “Hello world”. create a index.html file and modify the index.
…