|
@@ -121,15 +121,17 @@ namespace GxPress.Api
|
|
|
app.UseMiddleware<ExceptionMiddleware>();
|
|
|
app.UseRouting();
|
|
|
app.UseJwtAuthorization();
|
|
|
- app.UseDefaultFiles();
|
|
|
- app.UseStaticFiles();
|
|
|
app.UseStaticFiles(new StaticFileOptions
|
|
|
{
|
|
|
- FileProvider = new PhysicalFileProvider(
|
|
|
- Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")),
|
|
|
- RequestPath = "/",
|
|
|
ContentTypeProvider = provider
|
|
|
});
|
|
|
+ // app.UseStaticFiles(new StaticFileOptions
|
|
|
+ // {
|
|
|
+ // FileProvider = new PhysicalFileProvider(
|
|
|
+ // Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")),
|
|
|
+ // RequestPath = "",
|
|
|
+ // ContentTypeProvider = provider
|
|
|
+ // });
|
|
|
app.UseDirectoryBrowser(new DirectoryBrowserOptions
|
|
|
{
|
|
|
FileProvider = new PhysicalFileProvider(
|