running node and apache servers on same ubuntu server

I am trying to access cesium app from out side my network ( over the internet)

I have hosted cesium node on port 8080 (default).

port 8080 is not configured to be listened from router, I would love to use port 80 as a proxy for node.

**here is my yargs while starting the server **

node server.js --public=true --upstream-proxy=http://localhost:80

o/p of my settting

Cesium development server running publicly. Connect to http://localhost:8080/

The goal is to access cesium app from outside the local network ( over the internet)

Cesium doesn’t require using the node server, which is really only intended for local developer use. Just serve the Cesium files directly with Apache instead.

Thanks for reminding. Thats perfect.