I am using the concept of services in appengine to put all my services together in one website
Can I use other clouds for serving static files and configure dispatch.yaml to be routed to other clouds
For example, one of the suggestions is to use Cloudflare and another option is to use cloudstorage for serving static files.
I have a website already with domain and running on appengine. Lets say "
www.abc.com."
Now, I am expanding and building a business directory and want to serve static files. These should be served as "
www.abc.com/listing"
With appengine, I can have 'listing' as another service and configure the routing in dispatch.yaml to be serving with "
www.abc.com/listing"
Question: can I use cloudstorage as a cdn for the static files and then do routing configuration in dispatch.yaml ?
Cheers