简体   繁体   中英

Nancy: Serving static content (e.g. index.html) from “/”?

I'm trying to make a single page web application using Nancy. Therefore, I want my root URL to serve a plain .html file, without any view logic or whatsoever.

I tried

Get["/"] = parameters => Response.AsHtml("content/index.html")

But there's no AsHtml .

I tried a custom bootstrapper with

conventions.StaticContentsConventions.Add(
    StaticContentConventionBuilder.AddFile("/", @"content/index.html")
);

But apparently it thinks that "/" is not a file - Nancy gives me a directory listing on http://localhost:<port>/ instead.

What do I do? This shouldn't be this hard, right?

ps. Any way to turn that directory listing off? It feels insecure.

Add a module that serves index.html by default:

public IndexModule() : base("")
{
    Get[@"/"] = parameters =>
    {
        return Response.AsFile("Content/index.html", "text/html");
    };
}

Then serve the rest of your files using a convention in your bootstrapper:

protected override void ConfigureConventions(NancyConventions nancyConventions)
{
    nancyConventions.StaticContentsConventions.Add(StaticContentConventionBuilder.AddDirectory("/", "Content"));
    base.ConfigureConventions(nancyConventions);
}

Just put it your views folder and do:

Get["/"] = _ => View["index"];

The directory listing is nothing to do with Nancy, whatever hosting you're using is displaying that.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM