Hello All,
When using the various static file hosting options on GAE Nodejs Flex Environment, I see the below three as the main options:
1. have the app serve on a route e.g app.use(express.static())
2. use the app.yaml config
3. use google bucket / cdn
My first question is which should be most performant? I am serving a 400kb SPA bundle.
Second, I need some flexibility which I am using the routing for, such as deciding which bundle to serve based on geo, reading the cookie header and logging. Would these things be possible with option 2 & 3?
My final question, is that the app.yaml option is this just using nginx to serve behind the scenes?
Thanks,
Dennis