First install screen
sudo apt install screen
Now you could just run it
screen -d -m ./ngrok http 80
But you probably want it to automatically run at startup. So edit the bashrc:
sudo nano /home/pi/.bashrc
Scroll to the very end of that file and add this:
screen -d -m /home/pi/./ngrok http 80