It seems that static files can only be served as an app from that domain.
I can create a new app to host static files, but I'm a little worried that it will be violated.
You do not need to serve your static content with a separate app, you just have to specify a different hostname Need to use. App Engine makes it easy to do several different hostnames that point to the same app.
You do not even need to create a DNS entry with the wildcard subdomain if your app resides on myapp.appspot.com , then you can access it via any subdomain Such as static.myapp.appspot.com . If you are using your own domain, you will need it.
Comments
Post a Comment