Setup Nginx as a Reverse Proxy for Thingsboard running on different port/server
  In this blog, we will Setup Nginx as a Reverse Proxy for Thingsboard IOT dashboard running on different port     Requirement:     Ubuntu Server   Thingsboard installed on Ubuntu server   Nginx installed on Ubuntu server       For installing please refer thingsboard documentation page     windows:    https://thingsboard.io/docs/user-guide/install/windows/     Linux:    https://thingsboard.io/docs/user-guide/install/linux/             Let us know in comment if you face any issue in installation we will help you.       NGINX installation:    sudo apt-get install nginx    sudo service nginx status   sudo service nginx start     Open your browser and you will see the default NGinx home page, nginx also runs on default port 80     In some case if you don't see default page up then check:      If using cloud machine then need to open "http port 80" on 0.0.0.0/0 or a specific ip  If still don't see UI then restart server, sometime it comes after restart.           Configure...