"/docs":
get:
summary: "Documentation"
operationId: "Docs"
produces:
- "application/json"
responses:
200:
description: " Documentation"
2) I've install the swagger-ui packages:
npm install swagger-tools --save
npm install swagger-ui --save
npm install yamljs --save
var swaggerTools = require('swagger-tools');
var YAML = require('yamljs');
var swaggerDoc = YAML.load('openapi.yaml');
swaggerTools.initializeMiddleware(swaggerDoc, function (middleware) {
// Serve the Swagger documents and Swagger UI
app.use(middleware.swaggerUi());
});
4) I've deployed the esp, updated the app.yaml file and deployed the application
Unfortunately it doesn't doesn't work (i've this result):

I tried to deploy the application without the ESP (changing only the host in the openapi.yaml) and it works!.... so I understand that the problem is with the Host url defined in the openapi.yaml.
I've tried to change the swaggerDoc.host field directly in the app.js source code to let it point to the right host. it doesn't work
i tried to create an openapi-appengine.yaml that is identical to the openapi.yaml changing only the host and use the openapi-appeninge.yaml file as input for my swaggerDoc in the app.js code. It doesn't work
I really don't know what to do :'(
any help will be really appreciate
Thanks :)
Diego