I presently have an application that's just an HTML page (with a bunch of JavaScript making calls to a bunch of API's to make it look interactive).
But at the end of the day, presently, my entire app is just a single HTML page.
I deployed it on Azure App Service as a Web App.
I want to turn off HTTP caching everywhere -- server, intermediaries / proxies, and the client. How do I do that without resorting to the not-recommended HTML <meta>
tags?
I am looking at the Application Settings for the App Service but I don't see any option to turn off caching. I am presently on the F1 tier App Service Plan that's free, so I am guessing that's why they won't let me access the web server settings because it's (actually even lower than) shared across other apps of other customers?
But can you confirm that a Basic or upwards plan will let you control server options for an App Service (and not for a VM you have provisioned)?