-
Is there a way to enable session affinity (for signalR) on the AppHost project? Is it something you can do via 'PublishAsAzureContainerApp' or configuring the endpoints? |
Beta Was this translation helpful? Give feedback.
Answered by
davidfowl
Nov 25, 2024
Replies: 1 comment
-
You would do it via PublishAsAzureContainerApp: PublishAsAzureContainerApp((module, app) =>
{
app.Configuration.Ingress.StickySessionsAffinity = StickySessionAffinity.Sticky;
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mip1983
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You would do it via PublishAsAzureContainerApp: