“HTTPS required” while logging in to Keycloak as admin

前端 未结 7 1200
逝去的感伤
逝去的感伤 2021-02-02 09:46

\"enter

I am using Keycloak (version 1.0.4.Final) in JBOSS AS 7.1.1

7条回答
  •  离开以前
    2021-02-02 10:36

    If you want to disable it for your realm and have no possibility to use UI, do it directly on the database:

    update REALM set ssl_required='NONE' where id = 'master';
    

    Note - Restart keycloak for effect

提交回复
热议问题