Hi,
I am developing and application for deploying on a siemens industrial edge device. The application includes a backend server (in Django) and a frontend UI (in react). I have packaged the application with an NGINX server with proxy_pass for the backend. Here is the simplified architecture:
So when running on a server I can reach the backend at http://myserver/api which I can set as the base URL for all my API calls (using Axios) from the UI to my backend. Now when publishing my Industrial Edge Manager what should I set as my base URL?
What would be the server address for the application when deployed on the industrial edge device? Is there a default address for the NGINX server running on the industrial edge device?
I hope I have articulated the question properly.