Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I have tried to follow this recommendation. Added both web.config to wwwroot and .UseKestrel in Umbraco Cloud.
.UseKestrel
https://our.umbraco.com/documentation/Extending/Health-Check/Guides/ExcessiveHeaders
.UseKestrel causes the app to crash = not starting up at all.
.ConfigureKestrel(x => x.AddServerHeader = false)
And above doesn't do anything it seems.
Is there any other way to do this in Cloud för v9?
Ok.
Moving web.config to the root of the project seems to remove the X-Powered-By - but not the Server header.
Tried
app.Use(async (context, next) => { context.Response.Headers.Remove("Server"); await next(); });
Nothing.
I'm guessing this one is out of my hands then?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco Cloud ExcessiveHeaders for v9
I have tried to follow this recommendation. Added both web.config to wwwroot and
.UseKestrel
in Umbraco Cloud.https://our.umbraco.com/documentation/Extending/Health-Check/Guides/ExcessiveHeaders
.UseKestrel
causes the app to crash = not starting up at all.And above doesn't do anything it seems.
Is there any other way to do this in Cloud för v9?
Ok.
Moving web.config to the root of the project seems to remove the X-Powered-By - but not the Server header.
Tried
Nothing.
I'm guessing this one is out of my hands then?
is working on a reply...