2

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

m3n7alsnak3
  • 3,026
  • 1
  • 15
  • 24
Zodraz
  • 131
  • 1
  • 7

1 Answers1

2

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.

Community
  • 1
  • 1
Rob Davis
  • 1,299
  • 1
  • 10
  • 22
  • We deployed app behind trafeik reverse proxy and we implemented the ADFS integration with the identity server. When the callback happens after getting authenticated,we got Http 405 POST not supported error. We solved it by setting the PublicOrigin – Aypn Oct 11 '19 at 17:31