Reputation: 23
How can I deploy images to Google App Engine?
My image is in the directory /css/images/error1.png
But on appspot.com: "The requested URL /css/images/error1.png was not found on this server."
What is wrong?
The upload-log: http://pastebin.com/VAK5hYPC
Upvotes: 0
Views: 565
Reputation:
Try this and type in the url path in your browser to see if the image is found (Might even be a typo somewere)
- url: /css
static_dir: static/css/images
Upvotes: 0
Reputation: 5424
Have you mapped the directory as a static directory in your app.yaml file?
Upvotes: 5