Thanks for that. Another related question "A static file handler associates a URL pattern with paths to static files uploaded with the application."
Lets say I have the following directories /stylesheets /static/images /static/images/ads Can I do the following - url: /images static_dir: static/images - url: /images/ads static_dir: static/images/ads /*that is do subdirectories have the be explicitly listed - url /stylesheets static_dir /stylesheets /* that is can you have more than one virtual static_dir? */ On Nov 15, 11:41 am, Barry Hunter <[email protected]> wrote: > Set caching headers on the file, so that every page doesnt have to load it > > http://code.google.com/appengine/docs/python/config/appconfig.html#St... > > http://code.google.com/appengine/docs/python/gettingstarted/staticfil... > > Static files dont use instances. You still of course pay for bandwidth > > > > > > > > On Tue, Nov 15, 2011 at 4:36 PM, Kate <[email protected]> wrote: > > I have a css file that loads for every page. It shows up as a > > "request" in my billing summary. Are we charged for this? Is it an > > instance? If so, I will just include it in each page! > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google App Engine" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group > > athttp://groups.google.com/group/google-appengine?hl=en. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
