|
@@ -8,6 +8,7 @@ using Microsoft.AspNetCore.Hosting;
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
using Microsoft.AspNetCore.Http.Features;
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
+using Microsoft.AspNetCore.StaticFiles;
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
using Microsoft.Extensions.FileProviders;
|
|
@@ -109,6 +110,9 @@ namespace GxPress.Api
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
|
|
{
|
|
|
+ var provider = new FileExtensionContentTypeProvider();
|
|
|
+ // Add new mappings
|
|
|
+ provider.Mappings[".epub"] = "application/x-msdownload";
|
|
|
if (env.IsDevelopment())
|
|
|
{
|
|
|
app.UseDeveloperExceptionPage();
|
|
@@ -117,18 +121,19 @@ 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 = "/wwwroot"
|
|
|
+ RequestPath = "/MyImages"
|
|
|
});
|
|
|
app.UseDirectoryBrowser(new DirectoryBrowserOptions
|
|
|
{
|
|
|
FileProvider = new PhysicalFileProvider(
|
|
|
Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")),
|
|
|
- RequestPath = "/wwwroot"
|
|
|
+ RequestPath = "/MyImages"
|
|
|
});
|
|
|
app.UseCors("AllowAny");
|
|
|
app.UseSwashbuckle();
|