nginx and Node.jsnodejs-server DeploymentSSH to your Ubuntu serverapt-get updateapt-get install docker.iodocker pull kimschles/nodejs-server:latestdocker run -p 8080:8080 kimschles/nodejs-server:latestSee the json data by opening your browser and going to http://<IP_ADDRESS_OF_YOUR_SERVER>:8080/example-website Deploymentapt-get updateapt-get install docker.iodocker pull kimschles/example-website:latestdocker run -p 3000:3000 kimschles/example-website:latestSee the webpage by opening your browser and going to http://<IP_ADDRESS_OF_YOUR_SERVER>:3000/See the json data by opening your browser and going to http://<IP_ADDRESS_OF_YOUR_SERVER>:3000/Installing nginxapt install nginx-corevim /etc/nginx/sites-available/defaultDelete the default config :%dPaste in server blockservice nginx reload