How to deploy your node application in web and configure reverse proxy.
1.Install node.js in our server
First we want to install Node.js on our server.
curl -sL https://deb.nodesource.com/setup_11.x | sudo -E bash -
sudo apt-get install -y nodejs
now check the node.js version.
node -v
now we are going tp create one samp...
venket.hashnode.dev3 min read