Can I assume that this tutorial implements the MVC design pattern?
Regarding the client/server setup:
I want to take what I learn here, and deploy it to our "real life dev environment", which is running Apache. (side note: I've successfully proxied requests to Node/Express using Apache)
Do you have any ideas/recommendations on how to draw the line between serving the 'client' and 'server' app if one were using Apache?
This is how I'm thinking about setting up the proxy... will know more later:
Can I assume that this tutorial implements the MVC design pattern?
Regarding the client/server setup:
I want to take what I learn here, and deploy it to our "real life dev environment", which is running Apache. (side note: I've successfully proxied requests to Node/Express using Apache)
Do you have any ideas/recommendations on how to draw the line between serving the 'client' and 'server' app if one were using Apache?
This is how I'm thinking about setting up the proxy... will know more later:
https://webserver/xps --> proxied to Express app running the 'client' app https://webserver/api --> proxied to Express app running the 'server' app
❓ :question: