0
我有一個OWIN自主主機應用程序,爲提供單頁HTML應用程序提供簡單的開發Web服務器。由於我在外部編輯javascript,我想告訴服務器發回立即過期的緩存頭(以防止Chrome緩存)。.net Owin無主緩存的自主主機
我需要爲我的啓動添加什麼(請注意,此服務器啓用了文件瀏覽功能)。
class Startup
{
public void Configuration(IAppBuilder app)
{
var hubConfiguration = new HubConfiguration();
hubConfiguration.EnableDetailedErrors = (Tools.DebugLevel > 10);
hubConfiguration.EnableJavaScriptProxies = true;
app.UseCors(CorsOptions.AllowAll);
//app.UseStaticFiles();
app.UseFileServer(new FileServerOptions()
{
//RequestPath = new PathString("/Scopes"),
EnableDirectoryBrowsing = true,
FileSystem = new PhysicalFileSystem(@".\Scopes"),
});
app.MapSignalR("/signalr", hubConfiguration);
}
}