We have an Angular app and a Back-end web API on .NET core. Both sites should be served over HTTPS. I currently have one Linux server.
Currently I'm planning to host my Angular app on a domain (for example: https:// example.com) in nginx, all API calls are made using same domain with /api
endpoint (for example: https:// example.com/api), and from nginx server I'm redirecting to .NET core Kestrel server.
Is this deployment good for a real production environment? If anyone has better ideas, please let me know. Thanks.
PS: obtaining another public IP isn't a problem.