My experience with Ocelot as an entry point to an app was mostly good. I like that it is cloud-agnostic – it’s good to go on Azure, AWS, or whatever.
The biggest issue I had was with route configuration. You are stuck writing a static config file (separate from appsettings.json
) or creating an overkill provider.
In my dev environment, I used Ocelot’s config file and my routes all pointed to localhost
. But when deploying to the cloud, did I really want to create another config file (ocelot.production.json
) just for a different hostname or port? My solution was to dynamically build the routes at runtime using injected ENV
variables.