I have a Node JS appengine app. but i want to route anything /blog/*
to a separate wordpress VM created through the cloud launcher. it's not an appengine service, just a compute engine VM.
How can I do this?
Current app.yaml
:
runtime: nodejs
env: flex
manual_scaling:
instances: 1
resources:
cpu: 1
memory_gb: 0.5
disk_size_gb: 10
handlers:
- url: /.*
script: auto
secure: always
redirect_http_response_code: 301