I am trying to do simple protection of a folder inside my web application. From the documentation seems very straight forward. Yet, it does not work for me.
I have a razor page with a folder called keys, with some text files there. From the docs:
I have tried:
public void ConfigureServices(IServiceCollection services)
{
services.AddRazorPages(options => {
options.Conventions.AuthorizeFolder("/keys");
});
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
....
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.UseAuthentication();
Yet, once I start the application and I type on the browser:
https://localhost:44312/keys/clear.txt
The server is definitely sending back the page. Any clues?
Your comments under Cameron's answer have confused me a bit, so my answer may not be what you want to do.
Anyway, you can use
app.UseStaticFiles()
to add middleware to protect that folder. As it's middleware, you need to insert it into the correct place in your pipeline for it to work. Here is the completeConfigure
method inStartup.cs
:In the example above,
MyKeys
is a folder at the root of your project, and/keys
is the path used to request a file:If the user is not authenticated, they will receive a 401 response. We deliberately do not cache the results, as the files are sensitive. You could, of course, do something more here, such as requiring a user to have a particular role, or redirecting them if they're not signed in. It's up to you.