Hi,
I am migrating an application from Google App Engine - PHP , Standard Environment - to google kubernetes cluster.
Now, my point is, how to "migrate" the rules in app.yaml? The docker image has the some behaviour thaat the standard google app engine?
Should I to copy the app.yaml to any specific path, or re-write, or need I to specify the rules in ngingx config files?
Example of some rules that i need to specify:
handlers:
- url: /listeners/moduleA/(.*)$
script: /backend/listeners/moduleA.php
secure: always
- url: /listeners/api/(.*)$
script: /backend/listeners/api.php
secure: always
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /assets
static_dir: assets
- url: /(.*\.(css))$
static_files: \1
upload: .*\.(css)$
Thank you,
VS