#Running 3 different apps
3 messages · Page 1 of 1 (latest)
New reply sent from Help Station thread:
you could have them in the same project. You would just have to create subdomains for each of the service. so for instance your backend would be
api.yourapp.com
then the store would be yourapp.com. the admin would be
admin.yourapp.com
You're seeing this because this thread has been automatically linked to the Help Station thread.
New reply sent from Help Station thread:
Typically, in the current microservice architecture, it is usually done by directly accessing a single front-end service, which is routed by the front-end and then distributed to the designated microservice backend through the Gateway.
However, for the scenario you described, I suggest that you can deploy another service to customize the reverse proxy service, such as the nginx container.
And bind your main domain name for this reverse proxy service. All network entrances and exits will be forwarded through here.
Hope it can be of some help to you.
You're seeing this because this thread has been automatically linked to the Help Station thread.