1

Is there a module to support JWT in Microsoft IIS similar to Apache's mod_Authnz_jwt

I have static web pages I would like to secure with JWT

Tommie Jones
  • 957
  • 1
  • 16
  • 37

1 Answers1

1

IIS doesn't have a module to support JWT. But JWT can be set in asp.net application. It depends on System.IdentityModel.Tokens.Jwt. You can refer to this about how to configure JWT on asp.net application.

Though you cannot use JWT to secure static page, IIS has a module called Authentication to secure site. You can enable it to protect pages. enter image description here

Bruce Zhang
  • 2,880
  • 1
  • 5
  • 11