Zodraz
Zodraz

Reputation: 131

Identity Server 3 Reverse proxy

I am having problems with Identity Server 3 and load balancers.

The issue is solved for Identity Server 4 (here), but I need a similar solution for Identity Server 3.

Is there something?

Thx

Upvotes: 2

Views: 509

Answers (1)

Rob Davis
Rob Davis

Reputation: 1319

Check out the Terminating SSL section under the deployment docs...

There are more details for those two settings in the docs for: IdentityServerOptions

RequireSsl

Indicates if SSL is required for IdentityServer. Defaults to true

PublicOrigin

By default, IdentityServer uses the host, protocol, and port from the HTTP request when creating links. This might not be accurate in reverse proxy or load-balancing situations. You can override the origin used for link generation using this property.

Upvotes: 2

Related Questions