Keycloak: Difference between revisions

Onny (talk | contribs)
Cleanup and restructuring page
Onny (talk | contribs)
Add simple setup instruction
Line 4: Line 4:


== Setup ==
== Setup ==
Following configuration will enable a minimal Keycloak instance for testing purpose<syntaxhighlight lang="nix">
environment.etc."keycloak-database-pass".text = "PWD";
services.keycloak = {
  enable = true;
  settings = {
    hostname = "localhost";
    http-enabled = true;
  };
  database.passwordFile = "/etc/keycloak-database-pass";
};
</syntaxhighlight>
== Troubleshooting ==
== Troubleshooting ==