My ASP NET CORE Service is running on Google Cloud as App Engine Flexible. PostgreSQL database is running on SQL Cloud as well. Service connect to db and get data.
If I run service on localhost and test api from browser or Fidler it's works correct. When service is running in cloud but api response is mock it's also works correct. But if service need to connect do database it's get HTTP ERROR 500. No more additional information about error.
Maybe somone have any idea why it's works like in description?
Connection String looks like:
"ConnectionString": "Server=11.11.11.11;Port=1111;Database=namedb;;User Id=user;Password=pass;Keepalive=1;",