-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
79 lines (69 loc) · 4.64 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*==============================================================================================================================
| Author Ignia, LLC
| Client GoldSim
| Project Media Website
\=============================================================================================================================*/
using Microsoft.AspNetCore.StaticFiles;
using Microsoft.Extensions.FileProviders;
using Microsoft.Net.Http.Headers;
/*==============================================================================================================================
| ENABLE SERVICES
\-----------------------------------------------------------------------------------------------------------------------------*/
var builder = WebApplication.CreateBuilder(args);
/*------------------------------------------------------------------------------------------------------------------------------
| Enable: Application Insights
\-----------------------------------------------------------------------------------------------------------------------------*/
builder.Services.AddApplicationInsightsTelemetry(builder.Configuration);
/*==============================================================================================================================
| CONFIGURE: APPLICATION
\-----------------------------------------------------------------------------------------------------------------------------*/
var app = builder.Build();
/*------------------------------------------------------------------------------------------------------------------------------
| Configure: Environment-specific features
\-----------------------------------------------------------------------------------------------------------------------------*/
if (app.Environment.IsProduction()) {
app.UseHttpsRedirection();
app.UseHsts();
}
/*------------------------------------------------------------------------------------------------------------------------------
| Configure: Default files (e.g., Index.html)
\-----------------------------------------------------------------------------------------------------------------------------*/
app.UseDefaultFiles();
/*------------------------------------------------------------------------------------------------------------------------------
| Configure: Content Type Provider
\-----------------------------------------------------------------------------------------------------------------------------*/
var provider = new FileExtensionContentTypeProvider();
const int duration = 60 * 60 * 24 * 365 * 2; // 63072000 seconds; i.e., two years
/*------------------------------------------------------------------------------------------------------------------------------
| Configure: Custom MIME Types
\-----------------------------------------------------------------------------------------------------------------------------*/
provider.Mappings[".webmanifest"] = "application/manifest+json";
provider.Mappings[".emf"] = "image/x-emf";
provider.Mappings[".m4s"] = "video/mp4";
provider.Mappings[".mpd"] = "application/dash+xml";
provider.Mappings[".m3u8"] = "application/x-mpegURL";
provider.Mappings[".gsm"] = "application/octet-stream";
provider.Mappings[".gsp"] = "application/octet-stream";
/*------------------------------------------------------------------------------------------------------------------------------
| Configure: Alternate Directories
\-----------------------------------------------------------------------------------------------------------------------------*/
registerDirectory("wwwroot", "");
registerDirectory("Documents");
registerDirectory("Images");
registerDirectory("Videos");
/*------------------------------------------------------------------------------------------------------------------------------
| Run application
\-----------------------------------------------------------------------------------------------------------------------------*/
app.Run();
/*==============================================================================================================================
| METHOD: REGISTER DIRECTORY
\-----------------------------------------------------------------------------------------------------------------------------*/
void registerDirectory(string path, string? requestPath = null) =>
app!.UseStaticFiles(new StaticFileOptions() {
ContentTypeProvider = provider,
OnPrepareResponse = context => {
context.Context.Response.Headers[HeaderNames.CacheControl] = "public,max-age=" + duration;
},
FileProvider = new PhysicalFileProvider(Path.Combine(builder!.Environment.ContentRootPath, path)),
RequestPath = requestPath ?? "/" + path
});