Making Tailscale use the nginx webserver instaid of apache2

I am trying to use a program on Linux that uses Nginx and I can’t find anything of use there and I would like to use Tailscale for remote access of that generated page.

If you install tailscale on the same machine which is running nginx, then you should be able to http://100.x.x.x (your nginx server’s tailscale ip) from another machine on your tailnet and it should just work.

Note that nginx needs to be listening on that interface; in the conf file, it would need a listen 100.x.x.x:80 line or just listen 80 to bind to all interfaces.

Ok, Thanks! Just for context, It ran fine before then It stopped for some reason now it’s working. And this information helped a lot.