My all *.css *.js and images that show well in my development sever, but not on the app engine server.
problem example: http://10.0.0.1:8080/media/main-e384fa89e7460c2de34365acda6705744576899c.js => it's good but http://sr-patentmap.appspot.com/media/main-e384fa89e7460c2de34365acda6705744576899c.js will get the 404. Is it my problem? below is my app.yaml: application: sr-patentmap version: 333-f8f21d691067-2 ... handlers: - url: /favicon.ico static_files: favicon/favicon.ico upload: favicon/favicon.ico expiration: '3650d' - url: /media/jquery-1.4.4.min.js static_files: media/jquery-1.4.4.min.js upload: /media/jquery-1.4.4.min.js expiration: '3650d' - url: /media/jquery-ui-1.8.7.custom.min.js static_files: media/jquery-ui-1.8.7.custom.min.js upload: /media/jquery-ui-1.8.7.custom.min.js expiration: '3650d' - url: /media/jquery-ui-1.8.7/redmond/jquery-ui-1.8.7.custom.css static_files: media/jquery-ui-1.8.7/redmond/jquery-ui-1.8.7.custom.css upload: /media/jquery-ui-1.8.7/redmond/jquery-ui-1.8.7.custom.css expiration: '3650d' - url: /media/grid.locale-en.js static_files: media/grid.locale-en.js upload: /media/grid.locale-en.js expiration: '3650d' - url: /media/grid.locale-zh_TW.js static_files: media/grid.locale-zh_TW.js upload: /media/grid.locale-zh_TW.js #TODO not translate yet - url: /ho600_ajax/media/(.*) static_files: modules/ho600_ajax/media/\1 upload: /ho600_ajax/media/(.*) - url: /ho600_bugrecord/media/(.*) static_files: modules/ho600_bugrecord/media/\1 upload: /ho600_bugrecord/media/(.*) - url: /federated_auth/media/(.*) static_files: modules/federated_auth/media/\1 upload: /federated_auth/media/(.*) - url: /media/admin static_dir: django/contrib/admin/media/ expiration: '0' - url: /media/(.*) static_files: _generated_media/\1 upload: /media/(.*) - url: /__ajax__/ script: djangoappengine/main/main.py - url: /__.*__/.* script: djangoappengine/main/main.py login: admin - url: /federated_auth/secret_login/ script: djangoappengine/main/main.py login: admin - url: /ho600_bugrecord/.* script: djangoappengine/main/main.py login: admin - url: /_ah/queue/deferred script: djangoappengine/deferred/handler.py login: admin - url: /_ah/stats/.* script: djangoappengine/appstats/ui.py login: admin - url: /.* script: djangoappengine/main/main.py -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/N2338pndh5UJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
