I'm trying to deploy my angular node js application to the public but I'm struggling because I'm constrained to do it on windows server only (i have always done it using firebase or aws).
I tried through IIS and I couldnt make it work.
I kept researching and apache looked promising. Currenlty I have it set up for apache to host my angular app(the static file) and node js running on the windows server on localhost3000. I have multiple end points for POST, GET and DELETE requests.
I followed multiple tutorials on how to run node js on apache server and redirect requests from the host to the running local server (the running node js app in the windows server). No luck with that. I can make it run locally but not public.
I also have a version of the app where node js serves and renders the angular app. Not sure how to deploy that package either
Any thoughts on what could be a better way to deploy this app?