I've problem with editing app.yaml for simple php app has'nt directories that contains 5 files on the root
index.php config.php welcome.php share.php crossdomain.xml
my app.yaml
application: myapp
version: alpha-001
runtime: php
api_version: 1
handlers:
# Serve php scripts.
- url: /(.+\.php)$
script: \1
- url: /.*
script: index.php
- url: /crossdomain.xml
mime_type: text/xml
static_files: static/crossdomain.xml
upload: static/crossdomain.xml
it return
Unknown url handler type.
what's the right way to specify all files in app.yaml
thanx in advance