I have an express nodejs api that uploads images to my persistent disk. (Paid service)
I can verify that the file is uploaded to the service, both through shell and disk usage.
However, I don’t know how to access the files. How do I display the images that have been uploaded?
Since that upload directory is not relative to the code in my app… How do I access that?
Do I have to write a custom route in my api to write/read those uploaded folders/files under /uploads/userfiles/ ? Or is there a web.config route I update somewhere?
If so – How? (Documentation anywhere? What would I search for for reference? Routes to virtual directory?)
A Render Disk mount path is just a folder on a disk, they’re nothing special from your web server’s point of view. They are not automatically available via a URL, as that’s down for your web server (in this case Express) to sort out.