I've spun up a Digital Ocean server, and I'm trying to serve a simple static web page. This answer recommended I use the http-server package. I can start serving on http://localhost:8080
by simply running:
http-server
Neat. How do I actually serve the page up remotely though, so that I'd be able to access it on my desktop by using the external IP of the server, for example, http://139.32.5.6
?
This is probably a really silly question.