-
Notifications
You must be signed in to change notification settings - Fork 183
Open
Description
Find the codes below, how can I change the response SERVER header to MYOWN.
Thank you.
`
var server = new WebServer(o => o
.WithCertificate(null)
.WithUrlPrefix(url)
.WithMode(HttpListenerMode.EmbedIO))
.WithIPBanning(o => o
.WithMaxRequestsPerSecond(30)
.WithRegexRules("Too many requests 429"))
.WithLocalSessionManager()
.WithCors(
// Origins, separated by comma without last slash
"http://unosquare.github.io,http://run.plnkr.co",
// Allowed headers
"content-type, accept",
// Allowed methods
"post")
.WithWebApi("/api", m => m
.WithController<PeopleController>())
.WithModule(new WebSocketChatModule("/chat"))
.WithModule(new WebSocketTerminalModule("/terminal"))
.WithStaticFolder("/", HtmlRootPath, true, m => m //<----------
.WithContentCaching(UseFileCache)
);
`
etherealbacon
Metadata
Metadata
Assignees
Labels
No labels