-
Notifications
You must be signed in to change notification settings - Fork 24
/
guides.html
1082 lines (950 loc) · 56.9 KB
/
guides.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Guides - Keycloak</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Keycloak is an open source identity and access management solution">
<meta name="author" content="Keycloak Team">
<meta name="keywords" content="sso,idm,openid connect,saml,kerberos,ldap">
<link href="https://www.keycloak.org/resources/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://www.keycloak.org/resources/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet">
<link href="https://www.keycloak.org/resources/css/keycloak.css" rel="stylesheet">
<link rel="canonical" href="https://www.keycloak.org/guides">
<link rel="shortcut icon" href="https://www.keycloak.org/resources/favicon.ico">
<script src="https://www.keycloak.org/resources/js/ga.js" type="text/javascript"></script>
<script src="https://www.keycloak.org/resources/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
<script src="https://www.keycloak.org/resources/tocbot/dist/tocbot.min.js" type="text/javascript"></script></head>
<body>
<header class="navbar navbar-expand-md bg-light shadow-sm">
<nav class="container-xxl flex-wrap flex-md-no-wrap navbar-light">
<a class="navbar-brand me-3 me-md-4 me-lg-5" href="https://www.keycloak.org/">
<img class="img-fluid" src="https://www.keycloak.org/resources/images/logo.svg" width="240" alt="Keycloak"/>
</a>
<a class="nav-link d-none d-sm-block d-md-none d-lg-block" href="https://github.com/keycloak/keycloak"><img src="https://img.shields.io/github/stars/keycloak/keycloak?label=GitHub%20Stars" style="height: 25px" alt="GitHub stars"/></a>
<a class="nav-link d-block d-sm-none d-md-block d-lg-none" href="https://github.com/keycloak/keycloak"><img src="https://img.shields.io/github/stars/keycloak/keycloak?label=" style="height: 25px" alt="GitHub stars"/></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
<span class="fa fa-bars fa-lg px-1 py-2"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav flex-row flex-wrap bd-navbar-nav pt-2 py-md-0">
<li class="nav-item col-6 col-md-auto">
<a class="nav-link active" href="https://www.keycloak.org/guides">Guides</a>
</li>
<li class="nav-item col-6 col-md-auto">
<a class="nav-link " href="https://www.keycloak.org/documentation">Docs</a>
</li>
<li class="nav-item col-6 col-md-auto">
<a class="nav-link " href="https://www.keycloak.org/downloads">Downloads</a>
</li>
<li class="nav-item col-6 col-md-auto">
<a class="nav-link " href="https://www.keycloak.org/community">Community</a>
</li>
<li class="nav-item col-6 col-md-auto">
<a class="nav-link " href="https://www.keycloak.org/blog">Blog</a>
</li>
</ul>
</div>
</nav>
</header>
<script src="https://www.keycloak.org/resources/js/guides.js" type="text/javascript"></script>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<ul class="nav navbar-nav">
<li>
<a class="nav-link" href="#migration">Migration</a>
</li>
<li>
<a class="nav-link" href="#getting-started">Getting started</a>
</li>
<li>
<a class="nav-link" href="#server">Server</a>
</li>
<li>
<a class="nav-link" href="#operator">Operator</a>
</li>
<li>
<a class="nav-link" href="#securing-apps">Securing applications</a>
</li>
<li>
<a class="nav-link" href="#high-availability">High availability</a>
</li>
</ul>
<div class="float-right">
<form>
<input id="guide-search" class="form-control" type="text" placeholder="Search" aria-label="Search">
</form>
</div>
</div>
</nav>
<div class="jumbotron jumbotron-fluid bg-light kc-bg-triangles pt-4">
<div class="container">
<div class="row guide-category" id="migration">
<h2>Migration</h2>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Migrating to Quarkus distribution
</h5>
<span class="card-text">Migrate to the new Quarkus distribution from the legacy WildFly distribution</span>
<div>
</div>
<a href="https://www.keycloak.org/migration/migrating-to-quarkus" class="stretched-link link-dark"></a>
</div>
</div>
</div>
</div>
<div class="row guide-category" id="getting-started">
<h2>Getting started</h2>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
OpenJDK
</h5>
<span class="card-text">Get started with Keycloak on bare metal</span>
<div>
</div>
<a href="https://www.keycloak.org/getting-started/getting-started-zip" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Docker
</h5>
<span class="card-text">Get started with Keycloak on Docker</span>
<div>
</div>
<a href="https://www.keycloak.org/getting-started/getting-started-docker" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Podman
</h5>
<span class="card-text">Get started with Keycloak on Podman</span>
<div>
</div>
<a href="https://www.keycloak.org/getting-started/getting-started-podman" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Kubernetes
</h5>
<span class="card-text">Get started with Keycloak on Kubernetes</span>
<div>
</div>
<a href="https://www.keycloak.org/getting-started/getting-started-kube" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
OpenShift
</h5>
<span class="card-text">Get started with Keycloak on OpenShift</span>
<div>
</div>
<a href="https://www.keycloak.org/getting-started/getting-started-openshift" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Scaling
</h5>
<span class="card-text">Get started with Keycloak scaling and tuning</span>
<div>
</div>
<a href="https://www.keycloak.org/getting-started/getting-started-scaling-and-tuning" class="stretched-link link-dark"></a>
</div>
</div>
</div>
</div>
<div class="row guide-category" id="server">
<h2>Server</h2>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring Keycloak
</h5>
<span class="card-text">Understand how to configure and start Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/server/configuration" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring Keycloak for production
</h5>
<span class="card-text">Learn how to make Keycloak ready for production.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/configuration-production" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Admin bootstrap and recovery
</h5>
<span class="card-text">Learn how to bootstrap and recover admin account.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/bootstrap-admin-recovery" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Directory Structure
</h5>
<span class="card-text">Understand the purpose of the directories under the installation root</span>
<div>
</div>
<a href="https://www.keycloak.org/server/directory-structure" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Running Keycloak in a container
</h5>
<span class="card-text">Learn how to run Keycloak from a container image</span>
<div>
</div>
<a href="https://www.keycloak.org/server/containers" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring TLS
</h5>
<span class="card-text">Learn how to configure Keycloak's https certificates for ingoing and outgoing requests.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/enabletls" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring the hostname (v2)
</h5>
<span class="card-text">Learn how to configure the frontend and backchannel endpoints exposed by Keycloak.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/hostname" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Using a reverse proxy
</h5>
<span class="card-text">Learn how to configure Keycloak together with a reverse proxy, api gateway, or load balancer.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/reverseproxy" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring the database
</h5>
<span class="card-text">An overview about how to configure relational databases</span>
<div>
</div>
<a href="https://www.keycloak.org/server/db" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring distributed caches
</h5>
<span class="card-text">Understand how to configure the caching layer</span>
<div>
</div>
<a href="https://www.keycloak.org/server/caching" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring outgoing HTTP requests
</h5>
<span class="card-text">How to configure the client used for outgoing HTTP requests.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/outgoinghttp" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring trusted certificates
</h5>
<span class="card-text">How to configure the Keycloak Truststore to communicate through TLS.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/keycloak-truststore" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring trusted certificates for mTLS
</h5>
<span class="card-text">Learn how to configure Mutual TLS to verify clients that are connecting to Keycloak.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/mutual-tls" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Enabling and disabling features
</h5>
<span class="card-text">Understand how to configure Keycloak to use optional features</span>
<div>
</div>
<a href="https://www.keycloak.org/server/features" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring providers
</h5>
<span class="card-text">Understand how to configure providers</span>
<div>
</div>
<a href="https://www.keycloak.org/server/configuration-provider" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring logging
</h5>
<span class="card-text">Learn how to configure Logging</span>
<div>
</div>
<a href="https://www.keycloak.org/server/logging" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
FIPS 140-2 support
</h5>
<span class="card-text">How to configure Keycloak server for FIPS compliance</span>
<div>
</div>
<a href="https://www.keycloak.org/server/fips" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Configuring the Management Interface
</h5>
<span class="card-text">Learn how to configure Keycloak's management interface for endpoints like metrics and health checks.</span>
<div>
</div>
<a href="https://www.keycloak.org/server/management-interface" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Enabling Keycloak Health checks
</h5>
<span class="card-text">Learn how to enable and use Keycloak health checks</span>
<div>
</div>
<a href="https://www.keycloak.org/server/health" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Enabling Keycloak Metrics
</h5>
<span class="card-text">Learn how to enable and expose metrics from the server</span>
<div>
</div>
<a href="https://www.keycloak.org/server/configuration-metrics" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Enabling Tracing
</h5>
<span class="card-text">Learn how to enable distributed tracing in Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/server/tracing" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Importing and Exporting Realms
</h5>
<span class="card-text">An overview about how to import and export realms</span>
<div>
</div>
<a href="https://www.keycloak.org/server/importExport" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Using a vault
</h5>
<span class="card-text">Learn how to use and configure a vault in Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/server/vault" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
All configuration
</h5>
<span class="card-text">Complete list of all build options and configuration for Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/server/all-config" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
All provider configuration
</h5>
<span class="card-text">Complete list of all the available provider configuration options</span>
<div>
</div>
<a href="https://www.keycloak.org/server/all-provider-config" class="stretched-link link-dark"></a>
</div>
</div>
</div>
</div>
<div class="row guide-category" id="operator">
<h2>Operator</h2>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak Operator Installation
</h5>
<span class="card-text">How to install the Keycloak Operator on Kubernetes and OpenShift</span>
<div>
</div>
<a href="https://www.keycloak.org/operator/installation" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Basic Keycloak deployment
</h5>
<span class="card-text">How to install Keycloak using the Operator</span>
<div>
</div>
<a href="https://www.keycloak.org/operator/basic-deployment" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak Realm Import
</h5>
<span class="card-text">How to perform an automated Keycloak Realm Import using the operator</span>
<div>
</div>
<a href="https://www.keycloak.org/operator/realm-import" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Advanced configuration
</h5>
<span class="card-text">How to tune advanced aspects of the Keycloak CR</span>
<div>
</div>
<a href="https://www.keycloak.org/operator/advanced-configuration" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Using custom Keycloak images
</h5>
<span class="card-text">How to customize and optimize the Keycloak Container</span>
<div>
</div>
<a href="https://www.keycloak.org/operator/customizing-keycloak" class="stretched-link link-dark"></a>
</div>
</div>
</div>
</div>
<div class="row guide-category" id="securing-apps">
<h2>Securing applications</h2>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Planning for securing applications and services
</h5>
<span class="card-text">Introduction and basic concepts for securing applications</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/overview" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Secure applications and services with OpenID Connect
</h5>
<span class="card-text">Using OpenID Connect with Keycloak to secure applications and services</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/oidc-layers" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak JavaScript adapter
</h5>
<span class="card-text">Client-side JavaScript library that can be used to secure web applications.</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/javascript-adapter" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak Node.js adapter
</h5>
<span class="card-text">Node.js adapter to protect server-side JavaScript apps</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/nodejs-adapter" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
mod_auth_openidc Apache HTTPD Module
</h5>
<span class="card-text">Configuring the mod_auth_openidc Apache module with Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/mod-auth-openidc" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak SAML Galleon feature pack for WildFly and EAP
</h5>
<span class="card-text">Using Keycloak SAML Galleon feature pack to secure applications in WildFly and EAP</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/saml-galleon-layers" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
mod_auth_mellon Apache Module
</h5>
<span class="card-text">Configuring the mod_auth_mellon Apache module with Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/mod-auth-mellon" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Docker registry
</h5>
<span class="card-text">Configuring a Docker registry to use Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/docker-registry" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Client registration service
</h5>
<span class="card-text">Using the client registration service</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/client-registration" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Client registration CLI
</h5>
<span class="card-text">Automating Client Registration with the CLI</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/client-registration-cli" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Using token exchange
</h5>
<span class="card-text">Configuring and using Token exchange with Keycloak</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/token-exchange" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak admin client
</h5>
<span class="card-text">Using the Keycloak admin client to access the Keycloak Admin REST API</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/admin-client" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak authorization client
</h5>
<span class="card-text">Using the Keycloak authz client administer and check permissions</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/authz-client" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Keycloak policy enforcer
</h5>
<span class="card-text">Using the Keycloak policy enforcer in Java applications</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/policy-enforcer" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Upgrading the Keycloak Client Libraries
</h5>
<span class="card-text">How to upgrade the Keycloak Client Libraries</span>
<div>
</div>
<a href="https://www.keycloak.org/securing-apps/upgrading" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Apache APISIX
<span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-link"></i> external</span>
</h5>
<span class="card-text">Integrate Keycloak for Authentication with Apache APISIX</span>
<div>
</div>
<a href="https://apisix.apache.org/blog/2021/12/10/integrate-keycloak-auth-in-apisix" target="_blank" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
KrakenD
<span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-link"></i> external</span>
</h5>
<span class="card-text">Secure APIs with an API Gateway</span>
<div>
</div>
<a href="https://www.krakend.io/docs/authorization/keycloak/" target="_blank" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Quarkus
<span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-link"></i> external</span>
</h5>
<span class="card-text">Using OpenID Connect and Keycloak to secure your Quarkus applications</span>
<div>
</div>
<a href="https://quarkus.io/guides/security-keycloak-authorization" target="_blank" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Traefik Hub
<span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-link"></i> external</span>
</h5>
<span class="card-text">Use Keycloak as an identity provider or as an identity broker for Traefik Hub API management</span>
<div>
</div>
<a href="https://doc.traefik.io/traefik-hub/authentication-authorization/idp/keycloak" target="_blank" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
WildFly
<span class="float-end badge bg-primary fs-xsmall"><i class="fa fa-link"></i> external</span>
</h5>
<span class="card-text">Secure WildFly Applications with Keycloak</span>
<div>
</div>
<a href="https://wildfly-security.github.io/wildfly-elytron/blog/securing-wildfly-apps-openid-connect/" target="_blank" class="stretched-link link-dark"></a>
</div>
</div>
</div>
</div>
<div class="row guide-category" id="high-availability">
<h2>High availability</h2>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Multi-site deployments
</h5>
<span class="card-text">Connect multiple Keycloak deployments in different sites to increase the overall availability</span>
<div>
</div>
<a href="https://www.keycloak.org/high-availability/introduction" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Concepts for multi-site deployments
</h5>
<span class="card-text">Understanding a multi-site deployment with synchronous replication</span>
<div>
</div>
<a href="https://www.keycloak.org/high-availability/concepts-multi-site" class="stretched-link link-dark"></a>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card shadow-sm mb-4">
<div class="card-body">
<h5 class="card-title">
Building blocks multi-site deployments
</h5>
<span class="card-text">Overview of building blocks, alternatives and not considered options</span>
<div>
</div>