Is it necessary to handle favicon.ico
separately like Google Developers Cloud Playground:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
If so, why not:
- url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
In my real app.yaml
I didn't handle favicon.ico
separately and it seems to be working:
application: myAppName
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /
static_files: website/index.html
upload: website/index.html
- url: /
static_dir: website
Inside the website
folder I have the following:
- images_folder
- favicon.ico
- index.html