You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)
);
`
The text was updated successfully, but these errors were encountered:
Find the codes below, how can I change the response SERVER header to MYOWN.
Thank you.
`
`
The text was updated successfully, but these errors were encountered: