ssk
ssk

Reputation: 9255

error in delivering static content in google app engine

I have the following app.yaml configuration file:

- url: /privacy.html 
  static_files: html/privacy.html
  upload: static_files
  
- url: /terms.html 
  static_files: html/terms.html
  upload: static_files

While hitting www.samplewebsite.com/privacy.html from the web browser, it complains the following:

Error: Not Found

The requested URL /privacy.html was not found on this server.

Everything works fine in local dev server.

Upvotes: 0

Views: 64

Answers (1)

Guido van Rossum
Guido van Rossum

Reputation: 16890

So as Sebastian Kreft pointed out your "upload:" clause is wrong. Read his comment to figure out what it should be.

Upvotes: 1

Related Questions