Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple Static Folder #599

Open
WillCrystian opened this issue Aug 28, 2024 · 0 comments
Open

Multiple Static Folder #599

WillCrystian opened this issue Aug 28, 2024 · 0 comments

Comments

@WillCrystian
Copy link

I need to create a project with multiple static folders, is there this resource in the library?

 var server = new EmbedIO.WebServer(o => o
     .WithUrlPrefix(url)
     .WithMode(HttpListenerMode.EmbedIO))
     .WithLocalSessionManager()
     .WithWebApi("/api", m => m
			.WithController(() => new ApiController())
			.WithController(() => new AnalyticsController()))				
      .WithStaticFolder("/", HtmlRootPath, true,  m => m
	      .WithContentCaching(UseFileCache))
      .WithStaticFolder("/", HtmlRootPath + "\\analytics", true, m => m
	      .WithContentCaching(UseFileCache))
      .WithModule(new ActionModule("/", HttpVerbs.Any, ctx => ctx.SendDataAsync(new { Message = "Error" })));

I'm trying to implement this code but without success.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant