I'm currently building a flutter web application and developing some php API. For practical reasons, I tested these APIs on a local server (XAMPP), but now I have access to a webmin server that has file storage.
How can I store such APIs in that storage and what path should I provide to my source code to access the APIs?
For example, this was the path that i gave when the APIs where in my own local server:
const String apiUrl = "http://localhost:8000/sd/api/";
Sorry for my ignorance, I hope someone can help me.