Exclude not necessary files. You don't need css, images, Jacascript
files etc. as resources on appengine.

static files are accessable by the browser but not by your java/python
app.

        <static-files>
                <include path="**" />
                <include path="**.nocache.*" expiration="0s" />
                <include path="**.cache.*" expiration="365d" />
                <exclude path="**.gwt.rpc" />
        </static-files>

resource files are accessable by your java/python app but not by the
browser.

        <resource-files>
                <exclude path="**.css" />
                <exclude path="**.gif" />
                <exclude path="**.html" />
                <exclude path="**.jpg" />
                <exclude path="**.js" />
                <exclude path="**.png" />
                <exclude path="**.wav" />
        </resource-files>

-- 
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.

Reply via email to