1

For some reason I can't get static_dir to work. In my app.ymal I have:

-   url: /ui
    static_dir: ui

-   url: /dump
    static_dir: dump

Loading static files from /ui works (i.e /ui/images/logo.png). But when I try to access something from /dumo I just get:

INFO     2009-11-12 14:03:55,497 dev_appserver.py:3034] "GET /dump/kaxas.zip HTTP/1.1" 403 -

If I change the name of the zip-file to something else it returns a 404 error. So in someway it finds the file.

On the server the files have the same owner and group, and the same rights (chmod 755).

I'm running dev_appserver on a linux server.

Any ideas?

..fredrik

4

1 に答える 1

5

HTTP 403 コードは通常、クォータの問題に対して GAE によって返されます。http://code.google.com/appengine/docs/quotas.htmlを参照してください。

あなたの zip ファイルは 1 MB を超えていると思いますが、そのような大きな zip ファイルは許可されていないと読みました。小さいファイルで試して、ダンプが機能していることを確認してください。うまくいくと思います。

于 2009-11-12T14:33:18.390 に答える