I built an node express server. It runs without any trouble: http://uniformflow.com
const app = express();
const port = process.env.PORT || 3000;
app.listen(port, () => console.log('listening on ' + port));
Recently, I got an ssl certificate from letsencrypt. I ended up having a secure working apache server, which you can check at https://www.uniformflow.com
At this point, I assume my express server listens the http port. And when someone sends a request with https port, It goes to my apache server /var/www directory. How should I route this requests to my node server?