vote up 12 vote down star
13

I've setup a static website on GAE using hints found elsewhere, but can't figure out how to return a 404 error. My app.yaml file looks like

- url: (.*)/
  static_files: static\1/index.html
  upload: static/index.html

- url: /
  static_dir: static

with all the static html/jpg files stored under the static directory. The above works for files that exist, but returns a null length file if they don't. The answer is probably to write a python script to return a 404 error, but how do you set things up to serve the static files that exist but run the script for files that don't?

Here is the log from fetching a non-existent file (nosuch.html) on the development application server:

ERROR    2008-11-25 20:08:34,084 dev_appserver.py] Error encountered reading file "/usr/home/ctuffli/www/tufflinet/static/nosuch.html":
[Errno 2] No such file or directory: '/usr/home/ctuffli/www/tufflinet/static/nosuch.html'
INFO     2008-11-25 20:08:34,088 dev_appserver.py] "GET /nosuch.html HTTP/1.1" 404 -
flag

67% accept rate
I would label this 'python' but I don't have access (yet)... – AJ Nov 11 at 19:03

5 Answers

vote up 8 vote down

You need to register a catch-all script handler. Append this at the end of your app.yaml:

- url: /.*
  script: main.py

In main.py you will need to put this code:

from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app

class NotFoundPageHandler(webapp.RequestHandler):
    def get(self):
        self.error(404)
        self.response.out.write('<Your 404 error html page>')

application = webapp.WSGIApplication([('/.*', NotFoundPageHandler)],
                                     debug=True)

def main():
    run_wsgi_app(application)

if __name__ == "__main__":
    main()

Replace <Your 404 error html page> with something meaningful. Or better use a template, you can read how to do that here.

Please let me know if you have problems setting this up.

link|flag
It looks like the last line in my original app.yaml matches before the one you suggest adding – ctuffli Nov 25 '08 at 20:28
vote up -1 vote down

yup i read that too...it goes on to say something for django which i don't use. or do i?

link|flag
vote up 4 vote down

A significantly simpler way to do this without requiring any CPU cycles is to place this handler at the bottom of your app.yaml

- url: /.*
    static_files: views/404.html
    upload: views/404.html

This then allows you to place a static 404.html file in your views directory. No need for a python handler. Anything that isn't handled in your app.yaml already will hit that.

link|flag
Brilliant, thanks. – fiXedd Jun 5 at 1:44
There isn't any way to return a 404 HTTP response code this way, is there? – fiXedd Jun 5 at 1:45
Yah, all you have to do is add the header to your HTML file. – Zachary Spencer Jun 5 at 12:47
vote up -1 vote down

it throws a fatal error when we try to add the below statements app.yaml

  • url: /.* static_files: views/404.html upload: views/404.html

  • url: /.* script: main.py

link|flag
vote up -1 vote down

Awww. I have the folder spell wrong. Double check the folder and it's name on the yaml file

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.