Proxy Pass frontend to Nodejs backend

#1
Hello,

I'd like to do the following;

https://ourdomain.com -> proxy pass to https://127.0.0.1:8055

If view the site via the IP:port I see what I should be seeing, but not sure how to proxypass the domain to the node port in open lightspeed.

I'm able to do this with nginx, but am quite new to OLS.

I've tried a rewrite rule in .htaccess

RewriteEngine On
RewriteRule ^(.*)$ http://127.0.0.1:8055/$1 [P]

Which just shows an error 500

Any help / pointers appreciated!
 
Top