For instance, if I have robots.txt declared as a static resource, and assuming that the application is stopped, does accessing it cause my application to be started ?
For instance, if I have robots.txt declared as a static resource, and assuming that
Share
No.
Requests for static files are served by a separate infrastructure to other requests. They never reach the app server. This is also why static content is not accessible by a deployed app.