我尝试使用Google App Engine 1.19.7和Python 2.7.9在Google CDN(appspot)上部署一些文件.我敢肯定,这不是一个大问题,但我不是专家.我在'Google开发者'中创建了应用程序app.yaml文件的内容是:
application: o-naturel version: 1 runtime: python27 api_version: 1 threadsafe: true
# Expiration des fichiers : 30 jours default_expiration: "30d"
handlers:
- url: /styles static_dir: styles
- url: /images static_dir: images
- url: /files static_dir: files
#- url: /.*
# static_files: index.html
# upload: index.html
Run Code Online (Sandbox Code Playgroud)
在部署期间查找下面的错误.希望我会得到一个答案,因为我不能跟随我的网站的发展.提前谢谢了 !!!!
2014-12-12 17:56:28 Running command: "['C:\\Python27\\pythonw.exe', '-u', 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py', '--no_cookies', u'--email=patrick.sanchez24@gmail.com', '--passin', 'update', 'D:\\Cdn-App_o-naturel']"
05:56 PM Application: o-naturel; version: 1
05:56 PM Host: appengine.google.com
Traceback (most recent call …
Run Code Online (Sandbox Code Playgroud)