'ASP.NET Core API Swagger behind EnvoyProxy swagger.json not found
Solution 1:[1]
You must set external url into swagger config:
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/application/swagger/v1/swagger.json", "v1 Docs");
}
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | bruegth |


