Welcome to mirror list, hosted at ThFree Co, Russian Federation.

navigation.yaml « _data « content - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ccdc70ccd8e46faec533e938e25e141b161c034 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
# Global navigation file for GitLab Docs
#
# For each entry:
#
# - Do not start the URL with "/".
# - URLs must be relative to root. For example, a page at https://docs.gitlab.com/runner/install/osx.html
#   has the entry `runner/install/osx.html`.
# - If the URL ends with index.html, leave it empty. For example:
#   - Do not: section_url: 'ee/dir/index.html'.
#   - Do: section_url: 'ee/dir/').
# - If you're referring to a section within index.html, include only the anchor. For example, section_url:`dir/#some-anchor`.
#
# For more information, see:
# - Docs Site architecture: https://docs.gitlab.com/ee/development/documentation/site_architecture/
# - Global Navigation: https://docs.gitlab.com/ee/development/documentation/site_architecture/global_nav.html
#
# Options:
#
# - Use "external_url: true" for external URLs in docs and categories

sections:
  # Documentation from https://gitlab.com/gitlab-org/gitlab
  - section_title: GitLab Docs
    section_url: 'ee/'

  - section_title: Learn GitLab with tutorials
    section_url: 'ee/tutorials/'

  - section_title: Choose a subscription
    section_url: 'ee/subscriptions/'
    section_categories:
      - category_title: GitLab SaaS subscriptions
        category_url: 'ee/subscriptions/gitlab_com/'
      - category_title: Self-managed subscriptions
        category_url: 'ee/subscriptions/self_managed/'
      - category_title: GitLab Dedicated subscriptions
        category_url: 'ee/subscriptions/gitlab_dedicated/'
      - category_title: Quarterly reconciliation
        category_url: 'ee/subscriptions/quarterly_reconciliation.html'
      - category_title: Storage usage quota
        category_url: 'ee/user/usage_quotas.html'
      - category_title: CI/CD minutes quota
        category_url: 'ee/ci/pipelines/cicd_minutes.html'
      - category_title: Free user limit
        category_url: 'ee/user/free_user_limit.html'
      - category_title: Activate Enterprise Edition
        category_url: 'ee/user/admin_area/license.html'
      - category_title: Features available to Starter and Bronze subscribers
        category_url: 'ee/subscriptions/bronze_starter.html'

  # INSTALLATION

  - section_title: Install GitLab
    section_url: 'ee/install/'
    section_categories:
      - category_title: Requirements
        category_url: 'ee/install/requirements.html'
        docs:
          - doc_title: PostgreSQL extensions
            doc_url: 'ee/install/postgresql_extensions.html'
      - category_title: Installation methods
        category_url: 'ee/install/'
        docs:
          # Documentation from https://gitlab.com/gitlab-org/omnibus-gitlab
          - doc_title: Linux packages (Omnibus)
            doc_url: 'omnibus/'
            docs:
              - doc_title: Architecture
                doc_url: 'omnibus/architecture/'
                docs:
                  - doc_title: Omnibus packages and images
                    doc_url: 'ee/administration/package_information/omnibus_packages.html'
                  - doc_title: Package information
                    doc_url: 'ee/administration/package_information/'
                  - doc_title: Package defaults
                    doc_url: 'ee/administration/package_information/defaults.html'
                  - doc_title: Package licensing
                    doc_url: 'ee/administration/package_information/licensing.html'
                  - doc_title: Package signatures
                    doc_url: 'ee/administration/package_information/signed_packages.html'
                  - doc_title: PostgreSQL versions
                    doc_url: 'ee/administration/package_information/postgresql_versions.html'
              - doc_title: Installation
                doc_url: 'omnibus/installation/'
                docs:
                  - doc_title: Deprecation policy
                    doc_url: 'ee/administration/package_information/deprecation_policy.html'
                  - doc_title: Supported OSes
                    doc_url: 'ee/administration/package_information/supported_os.html'
                  - doc_title: Manual installation
                    doc_url: 'ee/update/package/#upgrade-using-a-manually-downloaded-package'
                  - doc_title: Install JiHu Edition
                    doc_url: 'omnibus/jihu_edition.html'
              - doc_title: Configure
                doc_url: 'omnibus/settings/'
                docs:
                  - doc_title: Action Cable
                    doc_url: 'omnibus/settings/actioncable.html'
                  - doc_title: Backups
                    doc_url: 'omnibus/settings/backups.html'
                  - doc_title: Configuration options
                    doc_url: 'omnibus/settings/configuration.html'
                  - doc_title: Custom environment variables
                    doc_url: 'omnibus/settings/environment-variables.html'
                  - doc_title: Database
                    doc_url: 'omnibus/settings/database.html'
                  - doc_title: GitLab Mattermost
                    doc_url: 'ee/integration/mattermost/'
                  - doc_title: Grafana
                    doc_url: 'omnibus/settings/grafana.html'
                  - doc_title: High availability roles
                    doc_url: 'omnibus/roles/'
                  - doc_title: Logs
                    doc_url: 'omnibus/settings/logs.html'
                  - doc_title: NGINX
                    doc_url: 'omnibus/settings/nginx.html'
                  - doc_title: Gitaly Cluster
                    doc_url: 'omnibus/settings/praefect.html'
                  - doc_title: Prometheus
                    doc_url: 'omnibus/settings/prometheus.html'
                  - doc_title: Puma
                    doc_url: 'ee/administration/operations/puma.html'
                  - doc_title: Raspberry Pi
                    doc_url: 'omnibus/settings/rpi.html'
                  - doc_title: Redis
                    doc_url: 'omnibus/settings/redis.html'
                  - doc_title: SMTP
                    doc_url: 'omnibus/settings/smtp.html'
                  - doc_title: SSL
                    doc_url: 'omnibus/settings/ssl.html'
                  - doc_title: DNS
                    doc_url: 'omnibus/settings/dns.html'
                  - doc_title: Image scaling
                    doc_url: 'omnibus/settings/image_scaling.html'
                  - doc_title: Memory-constrained environments
                    doc_url: 'omnibus/settings/memory_constrained_envs.html'
              - doc_title: Release process
                doc_url: 'omnibus/release/'
              - doc_title: Maintain
                doc_url: 'omnibus/maintenance/'
              - doc_title: Troubleshoot
                doc_url: 'omnibus/troubleshooting.html'
          # End of documentation from https://gitlab.com/gitlab-org/omnibus-gitlab

          - doc_title: Cloud Native
            doc_url: 'ee/install/cloud_native/'
            docs:
              # Documentation from https://gitlab.com/gitlab-org/charts/gitlab
              - doc_title: Install with Helm Charts
                doc_url: 'charts/'
                docs:
                  - doc_title: Install
                    doc_url: 'charts/installation/'
                    docs:
                      - doc_title: Required tools
                        doc_url: 'charts/installation/tools.html'
                      - doc_title: Cloud cluster preparation
                        doc_url: 'charts/installation/cloud/'
                        docs:
                          - doc_title: Azure Kubernetes Service
                            doc_url: 'charts/installation/cloud/aks.html'
                          - doc_title: Amazon EKS
                            doc_url: 'charts/installation/cloud/eks.html'
                          - doc_title: Google Kubernetes Engine
                            doc_url: 'charts/installation/cloud/gke.html'
                          - doc_title: OpenShift Origin
                            doc_url: 'charts/installation/cloud/openshift.html'
                          - doc_title: Oracle Container Engine for Kubernetes
                            doc_url: 'charts/installation/cloud/oke.html'
                      - doc_title: Install with Helm Charts
                        doc_url: 'charts/installation/deployment.html'
                      - doc_title: Upgrade
                        doc_url: 'charts/installation/upgrade.html'
                        docs:
                          - doc_title: Release notes 6.0
                            doc_url: 'charts/releases/6_0.html'
                          - doc_title: Release notes 5.0
                            doc_url: 'charts/releases/5_0.html'
                          - doc_title: Release notes 4.0
                            doc_url: 'charts/releases/4_0.html'
                          - doc_title: Release notes 3.0
                            doc_url: 'charts/releases/3_0.html'
                          - doc_title: Release notes 2.0
                            doc_url: 'charts/releases/2_0.html'
                          - doc_title: Release notes 1.0
                            doc_url: 'charts/releases/1_0.html'
                      - doc_title: Backup and Restore
                        doc_url: 'charts/backup-restore/'
                        docs:
                          - doc_title: Backup
                            doc_url: 'charts/backup-restore/backup.html'
                          - doc_title: Restore
                            doc_url: 'charts/backup-restore/restore.html'
                      - doc_title: Migrate from Omnibus
                        doc_url: 'charts/installation/migration/'
                        docs:
                          - doc_title: Migrate from the Linux package
                            doc_url: 'charts/installation/migration/package_to_helm.html'
                          - doc_title: Migrate to the Linux package
                            doc_url: 'charts/installation/migration/helm_to_package.html'
                          - doc_title: Migrate between Helm versions
                            doc_url: 'charts/installation/migration/helm.html'
                          - doc_title: Migrate to MinIO
                            doc_url: 'charts/installation/migration/minio.html'

                      - doc_title: Version mappings
                        doc_url: 'charts/installation/version_mappings.html'
                  - doc_title: Configure
                    doc_url: 'charts/charts/'
                    docs:
                      - doc_title: Globals
                        doc_url: 'charts/charts/globals.html'
                      - doc_title: GitLab sub-charts
                        doc_url: 'charts/charts/gitlab/'
                        docs:
                          - doc_title: Gitaly chart
                            doc_url: 'charts/charts/gitlab/gitaly/'
                          - doc_title: GitLab Exporter chart
                            doc_url: 'charts/charts/gitlab/gitlab-exporter/'
                          - doc_title: GitLab Grafana chart
                            doc_url: 'charts/charts/gitlab/gitlab-grafana/'
                          - doc_title: GitLab Pages chart
                            doc_url: 'charts/charts/gitlab/gitlab-pages/'
                          - doc_title: GitLab Runner chart
                            doc_url: 'charts/charts/gitlab/gitlab-runner/'
                          - doc_title: GitLab Shell chart
                            doc_url: 'charts/charts/gitlab/gitlab-shell/'
                          - doc_title: KAS chart
                            doc_url: 'charts/charts/gitlab/kas/'
                          - doc_title: Migrations chart
                            doc_url: 'charts/charts/gitlab/migrations/'
                          - doc_title: Praefect chart
                            doc_url: 'charts/charts/gitlab/praefect/'
                          - doc_title: Sidekiq chart
                            doc_url: 'charts/charts/gitlab/sidekiq/'
                          - doc_title: Toolbox chart
                            doc_url: 'charts/charts/gitlab/toolbox/'
                          - doc_title: Webservice chart
                            doc_url: 'charts/charts/gitlab/webservice/'
                      - doc_title: Minio chart
                        doc_url: 'charts/charts/minio/'
                      - doc_title: Nginx chart
                        doc_url: 'charts/charts/nginx/'
                      - doc_title: Redis chart
                        doc_url: 'charts/installation/deployment.html#redis'
                      - doc_title: Redis HA chart
                        doc_url: 'charts/installation/deployment.html#redis'
                      - doc_title: Registry chart
                        doc_url: 'charts/charts/registry/'
                      - doc_title: Advanced
                        doc_url: 'charts/advanced/'
                        docs:
                          - doc_title: Custom Docker images
                            doc_url: 'charts/advanced/custom-images/'
                          - doc_title: External database
                            doc_url: 'charts/advanced/external-db/'
                          - doc_title: External Gitaly
                            doc_url: 'charts/advanced/external-gitaly/'
                          - doc_title: External GitLab Pages
                            doc_url: 'charts/advanced/external-gitlab-pages/'
                          - doc_title: External Mattermost
                            doc_url: 'charts/advanced/external-mattermost/'
                          - doc_title: External Nginx
                            doc_url: 'charts/advanced/external-nginx/'
                          - doc_title: External object storage
                            doc_url: 'charts/advanced/external-object-storage/'
                          - doc_title: External Redis
                            doc_url: 'charts/advanced/external-redis/'
                          - doc_title: FIPS-compliant images
                            doc_url: 'charts/advanced/fips/'
                          - doc_title: Geo
                            doc_url: 'charts/advanced/geo/'
                          - doc_title: Internal TLS between services
                            doc_url: 'charts/advanced/internal-tls/'
                          - doc_title: Persistent volumes
                            doc_url: 'charts/advanced/persistent-volumes/'
                          - doc_title: Red Hat UBI-based images
                            doc_url: 'charts/advanced/ubi/'

                  - doc_title: Troubleshoot
                    doc_url: 'charts/troubleshooting/'
              # End of documentation from https://gitlab.com/gitlab-org/charts/gitlab

              # Documentation from https://gitlab.com/gitlab-org/cloud-native/gitlab-operator
              - doc_title: Install with GitLab Operator
                doc_url: 'operator/'
                docs:
                  - doc_title: Install
                    doc_url: 'operator/installation.html'
                  - doc_title: Backup and restore
                    doc_url: 'operator/backup_and_restore.html'
                  - doc_title: Upgrade GitLab
                    doc_url: 'operator/gitlab_upgrades.html'
                  - doc_title: Support for Git over SSH
                    doc_url: 'operator/git_over_ssh.html'
                  - doc_title: Upgrade the Operator
                    doc_url: 'operator/operator_upgrades.html'
                  - doc_title: Security context constraints
                    doc_url: 'operator/security_context_constraints.html'
              # End of documentation from https://gitlab.com/gitlab-org/cloud-native/gitlab-operator

          - doc_title: Docker
            doc_url: 'ee/install/docker.html'
          - doc_title: From source
            doc_url: 'ee/install/installation.html'
            docs:
              - doc_title: Install under a relative URL
                doc_url: 'ee/install/relative_url.html'
          - doc_title: Troubleshooting
            doc_url: 'ee/administration/troubleshooting/'
      - category_title: Cloud providers guides
        category_url: 'ee/install/#install-gitlab-on-cloud-providers'
        docs:
          - doc_title: Azure
            doc_url: 'ee/install/azure/'
          - doc_title: Google Cloud Platform (GCP)
            doc_url: 'ee/install/google_cloud_platform/'
          - doc_title: Amazon Web Services (AWS)
            doc_url: 'ee/install/aws/'
            docs:
              - doc_title: EKS best practices
                doc_url: 'ee/install/aws/eks_clusters_aws.html'
              - doc_title: GitLab SRE for AWS
                doc_url: 'ee/install/aws/gitlab_sre_for_aws.html'
              - doc_title: GitLab Cloud Native Hybrid on AWS EKS
                doc_url: 'ee/install/aws/gitlab_hybrid_on_aws.html'
              - doc_title: Manual install on AWS
                doc_url: 'ee/install/aws/manual_install_aws.html'
      - category_title: Offline GitLab
        category_url: 'ee/topics/offline/'
        docs:
          - doc_title: Offline GitLab installation
            doc_url: 'ee/topics/offline/quick_start_guide.html'
      - category_title: Reference Architectures
        category_url: 'ee/administration/reference_architectures/'
        docs:
          - doc_title: Up to 1,000 users
            doc_url: 'ee/administration/reference_architectures/1k_users.html'
          - doc_title: Up to 2,000 users
            doc_url: 'ee/administration/reference_architectures/2k_users.html'
          - doc_title: Up to 3,000 users
            doc_url: 'ee/administration/reference_architectures/3k_users.html'
          - doc_title: Up to 5,000 users
            doc_url: 'ee/administration/reference_architectures/5k_users.html'
          - doc_title: Up to 10,000 users
            doc_url: 'ee/administration/reference_architectures/10k_users.html'
          - doc_title: Up to 25,000 users
            doc_url: 'ee/administration/reference_architectures/25k_users.html'
          - doc_title: Up to 50,000 users
            doc_url: 'ee/administration/reference_architectures/50k_users.html'
      - category_title: Steps after installing
        category_url: 'ee/install/next_steps.html'
      - category_title: Upgrade GitLab
        category_url: 'ee/update/'
        docs:
          - doc_title: Plan an upgrade
            doc_url: 'ee/update/plan_your_upgrade.html'
          - doc_title: Upgrade Omnibus instance
            doc_url: 'ee/update/package/'
            docs:
              - doc_title: Convert to Omnibus
                doc_url: 'omnibus/update/convert_to_omnibus.html'
              - doc_title: Convert to Enterprise Edition
                doc_url: 'ee/update/package/convert_to_ee.html'
              - doc_title: Package signatures
                doc_url: 'omnibus/update/package_signatures.html'
              - doc_title: GitLab 15 changes
                doc_url: 'omnibus/update/gitlab_15_changes.html'
              - doc_title: GitLab 14 changes
                doc_url: 'omnibus/update/gitlab_14_changes.html'
              - doc_title: GitLab 13 changes
                doc_url: 'omnibus/update/gitlab_13_changes.html'
              - doc_title: GitLab 12 changes
                doc_url: 'omnibus/update/gitlab_12_changes.html'
              - doc_title: GitLab 11 changes
                doc_url: 'omnibus/update/gitlab_11_changes.html'
              - doc_title: GitLab 10 changes
                doc_url: 'omnibus/update/gitlab_10_changes.html'
              - doc_title: Downgrade
                doc_url: 'ee/update/package/downgrade.html'
          - doc_title: Upgrade source instance
            doc_url: 'ee/update/upgrading_from_source.html'
            docs:
              - doc_title: Patch versions
                doc_url: 'ee/update/patch_versions.html'
              - doc_title: Change from Community Edition to Enterprise Edition
                doc_url: 'ee/update/upgrading_from_ce_to_ee.html'
          - doc_title: Zero-downtime upgrades for multi-node instances
            doc_url: 'ee/update/zero_downtime.html'
          - doc_title: Upgrades with downtime for multi-node instances
            doc_url: 'ee/update/with_downtime.html'
          - doc_title: Change from Enterprise Edition to Community Edition
            doc_url: 'ee/downgrade_ee_to_ce/'
          - doc_title: Releases and maintenance
            doc_url: 'ee/policy/maintenance.html'
          - doc_title: Deprecations by version
            doc_url: 'ee/update/deprecations.html'
          - doc_title: Removals by version
            doc_url: 'ee/update/removals.html'
          - doc_title: What's new
            doc_url: 'ee/administration/whats-new.html'

  # Documentation from https://gitlab.com/gitlab-org/gitlab-runner

  - section_title: Install GitLab Runner
    section_url: 'runner/install/'
    section_categories:
      - category_title: Linux
        category_url: 'runner/install/linux-repository.html'
      - category_title: Linux manual install
        category_url: 'runner/install/linux-manually.html'
      - category_title: FreeBSD
        category_url: 'runner/install/freebsd.html'
      - category_title: macOS
        category_url: 'runner/install/osx.html'
      - category_title: Windows
        category_url: 'runner/install/windows.html'
      - category_title: Docker
        category_url: 'runner/install/docker.html'
      - category_title: Helm chart
        category_url: 'runner/install/kubernetes.html'
      - category_title: GitLab agent
        category_url: 'runner/install/kubernetes-agent.html'
      - category_title: Operator
        category_url: 'runner/install/operator.html'
      - category_title: Bleeding edge releases
        category_url: 'runner/install/bleeding-edge.html'

      - category_title: Configure GitLab Runner
        category_url: 'runner/configuration/'
        docs:
          - doc_title: Advanced config
            doc_url: 'runner/configuration/advanced-configuration.html'
          - doc_title: Autoscale config
            doc_url: 'runner/configuration/autoscale.html'
          - doc_title: Autoscale on AWS EC2
            doc_url: 'runner/configuration/runner_autoscale_aws/'
          - doc_title: Autoscale on AWS Fargate
            doc_url: 'runner/configuration/runner_autoscale_aws_fargate/'
          - doc_title: Commands
            doc_url: 'runner/commands/'
          - doc_title: Feature flags
            doc_url: 'runner/configuration/feature-flags.html'
          - doc_title: macOS setup
            doc_url: 'runner/configuration/macos_setup.html'
          - doc_title: Runner Operator on OpenShift
            doc_url: 'runner/configuration/configuring_runner_operator.html'
          - doc_title: Running behind a proxy
            doc_url: 'runner/configuration/proxy.html'
          - doc_title: Rate limited requests
            doc_url: 'runner/configuration/proxy.html#handling-rate-limited-requests'
          - doc_title: Self-signed certificates
            doc_url: 'runner/configuration/tls-self-signed.html'
          - doc_title: System services
            doc_url: 'runner/configuration/init.html'
          - doc_title: Speed up job execution
            doc_url: 'runner/configuration/speed_up_job_execution.html'
      - category_title: Troubleshoot GitLab Runner
        category_url: 'runner/faq/'

  - section_title: Integrate applications
    section_url: 'ee/integration/'
    section_categories:
      - category_title: Akismet
        category_url: 'ee/integration/akismet.html'
      - category_title: Arkose Protect
        category_url: 'ee/integration/arkose.html'
      - category_title: Datadog
        category_url: 'ee/integration/datadog.html'
      - category_title: Elasticsearch
        category_url: 'ee/integration/advanced_search/elasticsearch.html'
        docs:
          - doc_title: Elasticsearch troubleshooting
            doc_url: 'ee/integration/advanced_search/elasticsearch_troubleshooting.html'
      - category_title: Gitpod
        category_url: 'ee/integration/gitpod.html'
      - category_title: Jira integrations
        category_url: 'ee/integration/jira/'
        docs:
          - doc_title: Configure the Jira integration
            doc_url: 'ee/integration/jira/configure.html'
          - doc_title: GitLab for Jira app
            doc_url: 'ee/integration/jira/connect-app.html'
          - doc_title: Jira DVCS connector
            doc_url: 'ee/integration/jira/dvcs.html'
          - doc_title: Jira Development Panel
            doc_url: 'ee/integration/jira/development_panel.html'
          - doc_title: Create Jira Server user
            doc_url: 'ee/integration/jira/jira_server_configuration.html'
          - doc_title: Create Jira Cloud API token
            doc_url: 'ee/integration/jira/jira_cloud_configuration.html'
          - doc_title: Jira integration issue management
            doc_url: 'ee/integration/jira/issues.html'
      - category_title: Kroki diagrams
        category_url: 'ee/administration/integration/kroki.html'
      - category_title: Mailgun
        category_url: 'ee/administration/integration/mailgun.html'
      - category_title: PlantUML
        category_url: 'ee/administration/integration/plantuml.html'
      - category_title: Project integration management
        category_url: 'ee/user/admin_area/settings/project_integration_management.html'
      - category_title: Project integrations
        category_url: 'ee/user/project/integrations/'
        docs:
          - doc_title: Asana
            doc_url: 'ee/user/project/integrations/asana.html'
          - doc_title: Bamboo CI
            doc_url: 'ee/user/project/integrations/bamboo.html'
          - doc_title: Discord
            doc_url: 'ee/user/project/integrations/discord_notifications.html'
          - doc_title: Emails on push
            doc_url: 'ee/user/project/integrations/emails_on_push.html'
          - doc_title: GitHub
            doc_url: 'ee/user/project/integrations/github.html'
          - doc_title: Google Chat
            doc_url: 'ee/user/project/integrations/hangouts_chat.html'
          - doc_title: Harbor
            doc_url: 'ee/user/project/integrations/harbor.html'
          - doc_title: Irker
            doc_url: 'ee/user/project/integrations/irker.html'
          - doc_title: Jenkins
            doc_url: 'ee/integration/jenkins.html'
          - doc_title: Mattermost notifications
            doc_url: 'ee/user/project/integrations/mattermost.html'
          - doc_title: Mattermost slash commands
            doc_url: 'ee/user/project/integrations/mattermost_slash_commands.html'
          - doc_title: Microsoft Teams
            doc_url: 'ee/user/project/integrations/microsoft_teams.html'
          - doc_title: Mock CI
            doc_url: 'ee/user/project/integrations/mock_ci.html'
          - doc_title: Pipeline status emails
            doc_url: 'ee/user/project/integrations/pipeline_status_emails.html'
          - doc_title: Pivotal Tracker
            doc_url: 'ee/user/project/integrations/pivotal_tracker.html'
          - doc_title: Prometheus
            doc_url: 'ee/user/project/integrations/prometheus.html'
          - doc_title: ServiceNow
            doc_url: 'ee/user/project/integrations/servicenow.html'
          - doc_title: Slack notifications
            doc_url: 'ee/user/project/integrations/slack.html'
          - doc_title: Slack slash commands
            doc_url: 'ee/user/project/integrations/slack_slash_commands.html'
            docs:
              - doc_title: Slash commands
                doc_url: 'ee/integration/slash_commands.html'
          - doc_title: Slack application
            doc_url: 'ee/user/project/integrations/gitlab_slack_application.html'
          - doc_title: Unify Circuit
            doc_url: 'ee/user/project/integrations/unify_circuit.html'
          - doc_title: Webex Teams
            doc_url: 'ee/user/project/integrations/webex_teams.html'
          - doc_title: Webhooks
            doc_url: 'ee/user/project/integrations/webhooks.html'
            docs:
              - doc_title: Webhook events
                doc_url: 'ee/user/project/integrations/webhook_events.html'
      - category_title: External issue tracker
        category_url: 'ee/integration/external-issue-tracker.html'
        docs:
          - doc_title: Bugzilla
            doc_url: 'ee/user/project/integrations/bugzilla.html'
          - doc_title: Custom issue tracker
            doc_url: 'ee/user/project/integrations/custom_issue_tracker.html'
          - doc_title: IBM Engineering Workflow Management
            doc_url: 'ee/user/project/integrations/ewm.html'
          - doc_title: Redmine
            doc_url: 'ee/user/project/integrations/redmine.html'
          - doc_title: YouTrack
            doc_url: 'ee/user/project/integrations/youtrack.html'
          - doc_title: ZenTao
            doc_url: 'ee/user/project/integrations/zentao.html'
      - category_title: Gmail actions buttons
        category_url: 'ee/integration/gmail_action_buttons_for_gitlab.html'
      - category_title: reCAPTCHA
        category_url: 'ee/integration/recaptcha.html'
      - category_title: Security partners
        category_url: 'ee/integration/security_partners/'
      - category_title: Sourcegraph
        category_url: 'ee/integration/sourcegraph.html'
      - category_title: Trello
        category_url: 'ee/integration/trello_power_up.html'
      - category_title: Visual Studio Code extension
        category_url: 'ee/user/project/repository/vscode.html'

  # ADMINISTRATION

  - section_title: Administer GitLab
    section_url: 'ee/administration/'
    section_categories:
      - category_title: Get started
        category_url: 'ee/administration/get_started.html'
      - category_title: Configure your installation
        category_url: 'ee/administration/configure.html'
        docs:
          - doc_title: Authentication and authorization
            doc_url: 'ee/administration/auth/'
            docs:
              - doc_title: AliCloud
                doc_url: 'ee/integration/alicloud.html'
              - doc_title: Atlassian Crowd (deprecated)
                doc_url: 'ee/administration/auth/crowd.html'
              - doc_title: Atlassian
                doc_url: 'ee/administration/auth/atlassian.html'
              - doc_title: Auth0
                doc_url: 'ee/integration/auth0.html'
              - doc_title: Authentiq
                doc_url: 'ee/administration/auth/authentiq.html'
              - doc_title: AWS Cognito
                doc_url: 'ee/administration/auth/cognito.html'
              - doc_title: Azure
                doc_url: 'ee/integration/azure.html'
              - doc_title: Bitbucket Cloud
                doc_url: 'ee/integration/bitbucket.html'
              - doc_title: CAS (deprecated)
                doc_url: 'ee/integration/cas.html'
              - doc_title: DingTalk
                doc_url: 'ee/integration/ding_talk.html'
              - doc_title: Facebook
                doc_url: 'ee/integration/facebook.html'
              - doc_title: Generic OAuth2
                doc_url: 'ee/integration/oauth2_generic.html'
              - doc_title: GitHub
                doc_url: 'ee/integration/github.html'
              - doc_title: GitLab.com
                doc_url: 'ee/integration/gitlab.html'
              - doc_title: Google
                doc_url: 'ee/integration/google.html'
              - doc_title: JWT
                doc_url: 'ee/administration/auth/jwt.html'
              - doc_title: Kerberos
                doc_url: 'ee/integration/kerberos.html'
              - doc_title: LDAP
                doc_url: 'ee/administration/auth/ldap/'
                docs:
                  - doc_title: LDAP synchronization
                    doc_url: 'ee/administration/auth/ldap/ldap_synchronization.html'
                  - doc_title: LDAP (Google Secure)
                    doc_url: 'ee/administration/auth/ldap/google_secure_ldap.html'
                  - doc_title: LDAP troubleshooting
                    doc_url: 'ee/administration/auth/ldap/ldap-troubleshooting.html'
              - doc_title: OAuth service provider
                doc_url: 'ee/integration/oauth_provider.html'
              - doc_title: OmniAuth
                doc_url: 'ee/integration/omniauth.html'
              - doc_title: OpenID Connect OmniAuth
                doc_url: 'ee/administration/auth/oidc.html'
              - doc_title: OpenID Connect identity
                doc_url: 'ee/integration/openid_connect_provider.html'
              - doc_title: Salesforce
                doc_url: 'ee/integration/salesforce.html'
              - doc_title: SAML
                doc_url: 'ee/integration/saml.html'
              - doc_title: Smartcard
                doc_url: 'ee/administration/auth/smartcard.html'
              - doc_title: Twitter
                doc_url: 'ee/integration/twitter.html'
              - doc_title: Vault
                doc_url: 'ee/integration/vault.html'
          - doc_title: CI/CD
            doc_url: 'ee/administration/cicd.html'
          - doc_title: Configuration and Admin Area
            doc_url: 'ee/user/admin_area/'
            docs:
              - doc_title: Admin Area settings
                doc_url: 'ee/user/admin_area/settings/'
              - doc_title: Account and limit settings
                doc_url: 'ee/user/admin_area/settings/account_and_limit_settings.html'
              - doc_title: Appearance
                doc_url: 'ee/user/admin_area/appearance.html'
              - doc_title: Authentication
                doc_url: 'ee/topics/authentication/'
              - doc_title: Batched background migrations
                doc_url: 'ee/user/admin_area/monitoring/background_migrations.html'
              - doc_title: CI/CD
                doc_url: 'ee/user/admin_area/settings/continuous_integration.html'
              - doc_title: Application cache interval
                doc_url: 'ee/administration/application_settings_cache.html'
              - doc_title: Custom instance-level project templates
                doc_url: 'ee/user/admin_area/custom_project_templates.html'
              - doc_title: Deprecated API rate limits
                doc_url: 'ee/user/admin_area/settings/deprecated_api_rate_limits.html'
              - doc_title: Diff limits
                doc_url: 'ee/user/admin_area/diff_limits.html'
              - doc_title: Email
                doc_url: 'ee/user/admin_area/settings/email.html'
              - doc_title: External authorization
                doc_url: 'ee/user/admin_area/settings/external_authorization.html'
              - doc_title: External pipeline validation
                doc_url: 'ee/administration/external_pipeline_validation.html'
              - doc_title: Enable features with feature flags
                doc_url: 'ee/administration/feature_flags.html'
              - doc_title: Available GitLab feature flags
                doc_url: 'ee/user/feature_flags.html'
              - doc_title: Federated Learning of Cohorts (FLoC)
                doc_url: 'ee/user/admin_area/settings/floc.html'
              - doc_title: Geo sites
                doc_url: 'ee/user/admin_area/geo_sites.html'
              - doc_title: Git abuse rate limit
                doc_url: 'ee/user/admin_area/reporting/git_abuse_rate_limit.html'
              - doc_title: Git LFS administration
                doc_url: 'ee/administration/lfs/'
              - doc_title: GitLab Pages
                doc_url: 'ee/administration/pages/'
                docs:
                  - doc_title: GitLab Pages for source installations
                    doc_url: 'ee/administration/pages/source.html'
              - doc_title: Health Check
                doc_url: 'ee/user/admin_area/monitoring/health_check.html'
              - doc_title: Incident management rate limits
                doc_url: 'ee/user/admin_area/settings/incident_management_rate_limits.html'
              - doc_title: Instance template repository
                doc_url: 'ee/user/admin_area/settings/instance_template_repository.html'
              - doc_title: Job artifacts
                doc_url: 'ee/administration/job_artifacts.html'
              - doc_title: Job logs
                doc_url: 'ee/administration/job_logs.html'
              - doc_title: Labels
                doc_url: 'ee/user/admin_area/labels.html'
              - doc_title: Log system
                doc_url: 'ee/administration/logs/'
                docs:
                  - doc_title: Parse logs with jq
                    doc_url: 'ee/administration/logs/log_parsing.html'
                  - doc_title: Trace logs based on correlation ID
                    doc_url: 'ee/administration/logs/tracing_correlation_id.html'
              - doc_title: Maintenance Mode
                doc_url: 'ee/administration/maintenance_mode/'
              - doc_title: Merge request approvals
                doc_url: 'ee/user/admin_area/merge_requests_approvals.html'
              - doc_title: Package Registry rate limits
                doc_url: 'ee/user/admin_area/settings/package_registry_rate_limits.html'
              - doc_title: Polling interval multiplier
                doc_url: 'ee/administration/polling.html'
              - doc_title: Protected paths
                doc_url: 'ee/user/admin_area/settings/protected_paths.html'
              - doc_title: Push event activities limit
                doc_url: 'ee/user/admin_area/settings/push_event_activities_limit.html'
              - doc_title: Rate limits on Repository files API
                doc_url: 'ee/user/admin_area/settings/files_api_rate_limits.html'
              - doc_title: Rate limits on Git LFS
                doc_url: 'ee/user/admin_area/settings/git_lfs_rate_limits.html'
              - doc_title: Rate limits on issue creation
                doc_url: 'ee/user/admin_area/settings/rate_limit_on_issues_creation.html'
              - doc_title: Rate limits on raw endpoints
                doc_url: 'ee/user/admin_area/settings/rate_limits_on_raw_endpoints.html'
              - doc_title: Rate limits on note creation
                doc_url: 'ee/user/admin_area/settings/rate_limit_on_notes_creation.html'
              - doc_title: Rate limits on Users API
                doc_url: 'ee/user/admin_area/settings/rate_limit_on_users_api.html'
              - doc_title: Rate limits on pipeline creation
                doc_url: 'ee/user/admin_area/settings/rate_limit_on_pipelines_creation.html'
              - doc_title: Reply by email
                doc_url: 'ee/administration/reply_by_email.html'
              - doc_title: Repository checks
                doc_url: 'ee/administration/repository_checks.html'
              - doc_title: Sign-in and help page text
                doc_url: 'ee/user/admin_area/settings/help_page.html'
              - doc_title: Sign-in restrictions
                doc_url: 'ee/user/admin_area/settings/sign_in_restrictions.html'
              - doc_title: Sign-up restrictions
                doc_url: 'ee/user/admin_area/settings/sign_up_restrictions.html'
              - doc_title: Spamcheck
                doc_url: 'ee/user/admin_area/reporting/spamcheck.html'
              - doc_title: System Hooks
                doc_url: 'ee/administration/system_hooks.html'
              - doc_title: Third-party offers
                doc_url: 'ee/user/admin_area/settings/third_party_offers.html'
              - doc_title: Timezone
                doc_url: 'ee/administration/timezone.html'
              - doc_title: Uploads
                doc_url: 'ee/administration/uploads.html'
              - doc_title: User Cohorts
                doc_url: 'ee/user/admin_area/user_cohorts.html'
              - doc_title: Visibility and access controls
                doc_url: 'ee/user/admin_area/settings/visibility_and_access_controls.html'
          - doc_title: Consul
            doc_url: 'ee/administration/consul.html'
          - doc_title: Environment variables
            doc_url: 'ee/administration/environment_variables.html'
          - doc_title: File hooks
            doc_url: 'ee/administration/file_hooks.html'
          - doc_title: Git protocol v2
            doc_url: 'ee/administration/git_protocol.html'
          - doc_title: Incoming email
            doc_url: 'ee/administration/incoming_email.html'
          - doc_title: Instance limits
            doc_url: 'ee/administration/instance_limits.html'
          - doc_title: Instance Review
            doc_url: 'ee/administration/instance_review.html'
          - doc_title: PostgreSQL
            doc_url: 'ee/administration/postgresql/'
            docs:
              - doc_title: Replication and failover
                doc_url: 'ee/administration/postgresql/replication_and_failover.html'
              - doc_title: Standalone packaged database
                doc_url: 'ee/administration/postgresql/standalone.html'
              - doc_title: PgBouncer
                doc_url: 'ee/administration/postgresql/pgbouncer.html'
              - doc_title: Database Load Balancing
                doc_url: 'ee/administration/postgresql/database_load_balancing.html'
              - doc_title: External database service
                doc_url: 'ee/administration/postgresql/external.html'
              - doc_title: Move instances
                doc_url: 'ee/administration/postgresql/moving.html'
          - doc_title: Load balancer
            doc_url: 'ee/administration/load_balancer.html'
          - doc_title: NFS
            doc_url: 'ee/administration/nfs.html'
          - doc_title: Postfix
            doc_url: 'ee/administration/reply_by_email_postfix_setup.html'
          - doc_title: Redis
            doc_url: 'ee/administration/redis/'
            docs:
              - doc_title: Configure the bundled Redis for replication
                doc_url: 'ee/administration/redis/replication_and_failover.html'
              - doc_title: Configure your own Redis for replication
                doc_url: 'ee/administration/redis/replication_and_failover_external.html'
              - doc_title: Standalone Redis configuration
                doc_url: 'ee/administration/redis/standalone.html'
              - doc_title: Troubleshooting
                doc_url: 'ee/administration/redis/troubleshooting.html'
          - doc_title: Sidekiq
            doc_url: 'ee/administration/sidekiq/'
            docs:
              - doc_title: Multiple Sidekiq processes
                doc_url: 'ee/administration/operations/extra_sidekiq_processes.html'
              - doc_title: Sidekiq routing rules
                doc_url: 'ee/administration/operations/extra_sidekiq_routing.html'
              - doc_title: Sidekiq MemoryKiller
                doc_url: 'ee/administration/operations/sidekiq_memory_killer.html'
              - doc_title: Sidekiq health check
                doc_url: 'ee/administration/sidekiq/sidekiq_health_check.html'
              - doc_title: Sidekiq job migration
                doc_url: 'ee/administration/sidekiq/sidekiq_job_migration.html'
              - doc_title: Sidekiq job size limits
                doc_url: 'ee/user/admin_area/settings/sidekiq_job_limits.html'
              - doc_title: Troubleshooting Sidekiq
                doc_url: 'ee/administration/sidekiq/sidekiq_troubleshooting.html'
          - doc_title: S/MIME signing
            doc_url: 'ee/administration/smime_signing_email.html'
          - doc_title: Repository storage
            doc_url: 'ee/administration/repository_storage_paths.html'
            docs:
              - doc_title: Repository storage types
                doc_url: 'ee/administration/repository_storage_types.html'
              - doc_title: Gitaly and Gitaly Cluster
                doc_url: 'ee/administration/gitaly/'
                docs:
                  - doc_title: Configure Gitaly
                    doc_url: 'ee/administration/gitaly/configure_gitaly.html'
                  - doc_title: Configure Gitaly Cluster
                    doc_url: 'ee/administration/gitaly/praefect.html'
                  - doc_title: Monitoring
                    doc_url: 'ee/administration/gitaly/monitoring.html'
                  - doc_title: Recovery options
                    doc_url: 'ee/administration/gitaly/recovery.html'
                  - doc_title: Troubleshooting
                    doc_url: 'ee/administration/gitaly/troubleshooting.html'
                  - doc_title: Gitaly reference
                    doc_url: 'ee/administration/gitaly/reference.html'
                  - doc_title: Gitaly timeouts
                    doc_url: 'ee/user/admin_area/settings/gitaly_timeouts.html'
          - doc_title: Object storage
            doc_url: 'ee/administration/object_storage.html'
          - doc_title: Merge request diffs storage
            doc_url: 'ee/administration/merge_request_diffs.html'
          - doc_title: Static objects external storage
            doc_url: 'ee/administration/static_objects_external_storage.html'
          - doc_title: Geo
            doc_url: 'ee/administration/geo/'
            docs:
              - doc_title: Setting up Geo
                doc_url: 'ee/administration/geo/setup/'
              - doc_title: Database replication
                doc_url: 'ee/administration/geo/setup/database.html'
              - doc_title: External PostgreSQL instances
                doc_url: 'ee/administration/geo/setup/external_database.html'
              - doc_title: Configuration
                doc_url: 'ee/administration/geo/replication/configuration.html'
              - doc_title: Using a Geo site
                doc_url: 'ee/administration/geo/replication/usage.html'
              - doc_title: Configure secondary proxying
                doc_url: 'ee/administration/geo/secondary_proxy/'
              - doc_title: Location-aware public URL
                doc_url: 'ee/administration/geo/secondary_proxy/location_aware_external_url.html'
              - doc_title: Upgrading Geo sites
                doc_url: 'ee/administration/geo/replication/upgrading_the_geo_sites.html'
              - doc_title: Version-specific upgrades
                doc_url: 'ee/administration/geo/replication/version_specific_upgrades.html'
              - doc_title: Using object storage
                doc_url: 'ee/administration/geo/replication/object_storage.html'
              - doc_title: Using Docker Registry
                doc_url: 'ee/administration/geo/replication/docker_registry.html'
              - doc_title: Geo for multiple servers
                doc_url: 'ee/administration/geo/replication/multiple_servers.html'
              - doc_title: Geo security review
                doc_url: 'ee/administration/geo/replication/security_review.html'
              - doc_title: Location-aware Git remote URLs
                doc_url: 'ee/administration/geo/replication/location_aware_git_url.html'
              - doc_title: Tuning Geo
                doc_url: 'ee/administration/geo/replication/tuning.html'
              - doc_title: Disable Geo
                doc_url: 'ee/administration/geo/replication/disable_geo.html'
              - doc_title: Removing a Geo site
                doc_url: 'ee/administration/geo/replication/remove_geo_site.html'
              - doc_title: Supported data types
                doc_url: 'ee/administration/geo/replication/datatypes.html'
              - doc_title: Frequently asked questions
                doc_url: 'ee/administration/geo/replication/faq.html'
              - doc_title: Troubleshooting
                doc_url: 'ee/administration/geo/replication/troubleshooting.html'
              - doc_title: Validation tests
                doc_url: 'ee/administration/geo/replication/geo_validation_tests.html'
              - doc_title: Geo Glossary
                doc_url: 'ee/administration/geo/glossary.html'
          - doc_title: Disaster recovery (Geo)
            doc_url: 'ee/administration/geo/disaster_recovery/'
            docs:
              - doc_title: Planned failover
                doc_url: 'ee/administration/geo/disaster_recovery/planned_failover.html'
              - doc_title: Bring primary back
                doc_url: 'ee/administration/geo/disaster_recovery/bring_primary_back.html'
              - doc_title: Automatic background verification
                doc_url: 'ee/administration/geo/disaster_recovery/background_verification.html'
          - doc_title: Agent server for Kubernetes
            doc_url: 'ee/administration/clusters/kas.html'
          - doc_title: Server hooks
            doc_url: 'ee/administration/server_hooks.html'
          - doc_title: Terraform state
            doc_url: 'ee/administration/terraform_state.html'
          - doc_title: Packages
            doc_url: 'ee/administration/packages/'
            docs:
              - doc_title: Container Registry
                doc_url: 'ee/administration/packages/container_registry.html'
              - doc_title: Dependency Proxy
                doc_url: 'ee/administration/packages/dependency_proxy.html'
          - doc_title: Web terminals
            doc_url: 'ee/administration/integration/terminal.html'
          - doc_title: Wikis
            doc_url: 'ee/administration/wikis/'
          - doc_title: Invalidate Markdown cache
            doc_url: 'ee/administration/invalidate_markdown_cache.html'
          - doc_title: Issue closing pattern
            doc_url: 'ee/administration/issue_closing_pattern.html'
          - doc_title: Snippets
            doc_url: 'ee/administration/snippets/'
          - doc_title: Host the product documentation
            doc_url: 'ee/administration/docs_self_host.html'

      # Maintain your install

      - category_title: Maintain your installation
        category_url: 'ee/administration/operations/'
        docs:
          - doc_title: Housekeeping
            doc_url: 'ee/administration/housekeeping.html'
          - doc_title: Fast SSH key lookup
            doc_url: 'ee/administration/operations/fast_ssh_key_lookup.html'
          - doc_title: Filesystem benchmarking
            doc_url: 'ee/administration/operations/filesystem_benchmarking.html'
          - doc_title: Rails console
            doc_url: 'ee/administration/operations/rails_console.html'
          - doc_title: Use SSH certificates
            doc_url: 'ee/administration/operations/ssh_certificates.html'
          - doc_title: Enable encrypted configuration
            doc_url: 'ee/administration/encrypted_configuration.html'
          - doc_title: Rake tasks
            doc_url: 'ee/raketasks/'
            docs:
              - doc_title: Backup and restore
                doc_url: 'ee/raketasks/backup_restore.html'
                docs:
                  - doc_title: Back up GitLab
                    doc_url: 'ee/raketasks/backup_gitlab.html'
                  - doc_title: Restore GitLab
                    doc_url: 'ee/raketasks/restore_gitlab.html'
              - doc_title: Clean up
                doc_url: 'ee/raketasks/cleanup.html'
              - doc_title: General maintenance
                doc_url: 'ee/administration/raketasks/maintenance.html'
              - doc_title: Geo tasks
                doc_url: 'ee/administration/raketasks/geo.html'
              - doc_title: GitHub import
                doc_url: 'ee/administration/raketasks/github_import.html'
              - doc_title: SMTP
                doc_url: 'ee/administration/raketasks/smtp.html'
              - doc_title: SPDX license list import
                doc_url: 'ee/raketasks/spdx.html'
          - doc_title: Import repositories
            doc_url: 'ee/raketasks/import.html'
          - doc_title: Inactive project deletion
            doc_url: 'ee/administration/inactive_project_deletion.html'
          - doc_title: Move repositories
            doc_url: 'ee/administration/operations/moving_repositories.html'
          - doc_title: Integrity check
            doc_url: 'ee/administration/raketasks/check.html'
          - doc_title: LDAP maintenance
            doc_url: 'ee/administration/raketasks/ldap.html'
          - doc_title: List repositories
            doc_url: 'ee/raketasks/list_repos.html'
          - doc_title: Migrate snippets
            doc_url: 'ee/raketasks/migrate_snippets.html'
          - doc_title: Praefect tasks
            doc_url: 'ee/administration/raketasks/praefect.html'
          - doc_title: Project import and export
            doc_url: 'ee/administration/raketasks/project_import_export.html'
          - doc_title: Read-only state
            doc_url: 'ee/administration/read_only_gitlab.html'
          - doc_title: Repository storage
            doc_url: 'ee/administration/raketasks/storage.html'
          - doc_title: Restart GitLab
            doc_url: 'ee/administration/restart_gitlab.html'
          - doc_title: Sample Prometheus data
            doc_url: 'ee/raketasks/generate_sample_prometheus_data.html'
          - doc_title: Uploads migration
            doc_url: 'ee/administration/raketasks/uploads/migrate.html'
          - doc_title: Uploads sanitization
            doc_url: 'ee/administration/raketasks/uploads/sanitize.html'
          - doc_title: User management
            doc_url: 'ee/raketasks/user_management.html'
          - doc_title: Webhooks administration
            doc_url: 'ee/raketasks/web_hooks.html'
          - doc_title: X509 signatures
            doc_url: 'ee/raketasks/x509_signatures.html'

      # New - secure (renamed existing topic)

      - category_title: Secure your installation
        category_url: 'ee/security/'
        docs:
          - doc_title: Limits on SSH keys
            doc_url: 'ee/security/ssh_keys_restrictions.html'
          - doc_title: Rate limits
            doc_url: 'ee/security/rate_limits.html'
          - doc_title: Webhooks
            doc_url: 'ee/security/webhooks.html'
          - doc_title: Information exclusivity
            doc_url: 'ee/security/information_exclusivity.html'
          - doc_title: Manage the CRIME vulnerability
            doc_url: 'ee/security/crime_vulnerability.html'
          - doc_title: Enforce two-factor authentication (2FA)
            doc_url: 'ee/security/two_factor_authentication.html'
          - doc_title: User email confirmation
            doc_url: 'ee/security/user_email_confirmation.html'
          - doc_title: Security of running jobs
            doc_url: 'runner/security/'
          - doc_title: Proxying assets
            doc_url: 'ee/security/asset_proxy.html'
          - doc_title: CI/CD variables
            doc_url: 'ee/ci/variables/#cicd-variable-security'
          - doc_title: Token overview
            doc_url: 'ee/security/token_overview.html'
          - doc_title: Compliance features
            doc_url: 'ee/administration/compliance.html'
          - doc_title: Respond to security incidents
            doc_url: 'ee/security/responding_to_security_incidents.html'

      - category_title: Administer users
        category_url: 'ee/user/profile/account/create_accounts.html'
        docs:
          - doc_title: Reset user password
            doc_url: 'ee/security/reset_user_password.html'
          - doc_title: Unlock a user
            doc_url: 'ee/security/unlock_user.html'
          - doc_title: Review abuse reports
            doc_url: 'ee/user/admin_area/review_abuse_reports.html'
          - doc_title: Unknown sign-ins, email notification
            doc_url: 'ee/user/profile/unknown_sign_in_notification.html'
          - doc_title: User file uploads
            doc_url: 'ee/security/user_file_uploads.html'
          - doc_title: Password storage
            doc_url: 'ee/security/password_storage.html'
          - doc_title: Credentials inventory
            doc_url: 'ee/user/admin_area/credentials_inventory.html'
          - doc_title: Custom password length limits
            doc_url: 'ee/security/password_length_limits.html'
          - doc_title: Generated passwords and integrated authentication
            doc_url: 'ee/security/passwords_for_integrated_authentication_methods.html'
          - doc_title: Global user settings
            doc_url: 'ee/administration/user_settings.html'
          - doc_title: Moderate users
            doc_url: 'ee/user/admin_area/moderate_users.html'
          - doc_title: Auditor users
            doc_url: 'ee/administration/auditor_users.html'
          - doc_title: Configure the libravatar service
            doc_url: 'ee/administration/libravatar.html'
          - doc_title: Broadcast messages
            doc_url: 'ee/user/admin_area/broadcast_messages.html'
          - doc_title: Email from GitLab
            doc_url: 'ee/user/admin_area/email_from_gitlab.html'

  # USE GITLAB

  - section_title: Use GitLab
    section_url: 'ee/user/'
    section_categories:
      - category_title: Set up your organization
        category_url: 'ee/topics/set_up_organization.html'
        docs:
          - doc_title: Namespaces
            doc_url: 'ee/user/namespace/'
          - doc_title: Members
            doc_url: 'ee/user/project/members/'
          - doc_title: Groups
            doc_url: 'ee/user/group/'
            docs:
              - doc_title: Manage groups
                doc_url: 'ee/user/group/manage.html'
              - doc_title: Group access and permissions
                doc_url: 'ee/user/group/access_and_permissions.html'
              - doc_title: Custom group-level project templates
                doc_url: 'ee/user/group/custom_project_templates.html'
              - doc_title: Group access tokens
                doc_url: 'ee/user/group/settings/group_access_tokens.html'
              - doc_title: Group import/export
                doc_url: 'ee/user/group/settings/import_export.html'
              - doc_title: Migrating groups
                doc_url: 'ee/user/group/import/'
              - doc_title: SAML Group Sync
                doc_url: 'ee/user/group/saml_sso/group_sync.html'
              - doc_title: SAML SSO for GitLab.com groups
                doc_url: 'ee/user/group/saml_sso/'
                docs:
                  - doc_title: SCIM provisioning
                    doc_url: 'ee/user/group/saml_sso/scim_setup.html'
                  - doc_title: Example group SAML and SCIM configurations
                    doc_url: 'ee/user/group/saml_sso/example_saml_config.html'
              - doc_title: Subgroups
                doc_url: 'ee/user/group/subgroups/'
              - doc_title: Move a personal project to a group
                doc_url: 'ee/tutorials/move_personal_project_to_a_group.html'
          - doc_title: User account options
            doc_url: 'ee/user/profile/'
            docs:
              - doc_title: Active sessions
                doc_url: 'ee/user/profile/active_sessions.html'
              - doc_title: Permissions and roles
                doc_url: 'ee/user/permissions.html'
              - doc_title: Personal access tokens
                doc_url: 'ee/user/profile/personal_access_tokens.html'
              - doc_title: Profile preferences
                doc_url: 'ee/user/profile/preferences.html'
              - doc_title: Notification emails
                doc_url: 'ee/user/profile/notifications.html'
              - doc_title: Two-factor authentication
                doc_url: 'ee/user/profile/account/two_factor_authentication.html'
              - doc_title: Report abuse
                doc_url: 'ee/user/report_abuse.html'
              - doc_title: Delete account
                doc_url: 'ee/user/profile/account/delete_account.html'
          - doc_title: SSH keys
            doc_url: 'ee/user/ssh.html'
          - doc_title: GitLab.com settings
            doc_url: 'ee/user/gitlab_com/'
      - category_title: Organize work with projects
        category_url: 'ee/user/project/'
        docs:
          - doc_title: Manage projects
            doc_url: 'ee/user/project/working_with_projects.html'
          - doc_title: Project visibility
            doc_url: 'ee/user/public_access.html'
          - doc_title: Project settings
            doc_url: 'ee/user/project/settings/'
          - doc_title: Project access tokens
            doc_url: 'ee/user/project/settings/project_access_tokens.html'
          - doc_title: Share projects
            doc_url: 'ee/user/project/members/share_project_with_groups.html'
          - doc_title: Reserved project and group names
            doc_url: 'ee/user/reserved_names.html'
          - doc_title: Search
            doc_url: 'ee/user/search/'
            docs:
              - doc_title: Advanced Search
                doc_url: 'ee/user/search/advanced_search.html'
              - doc_title: Advanced Search syntax
                doc_url: 'ee/user/search/global_search/advanced_search_syntax.html'
          - doc_title: Badges
            doc_url: 'ee/user/project/badges.html'
          - doc_title: Code intelligence
            doc_url: 'ee/user/project/code_intelligence.html'
          - doc_title: Compliance
            doc_url: 'ee/user/compliance/'
            docs:
              - doc_title: License Compliance
                doc_url: 'ee/user/compliance/license_compliance/'
              - doc_title: Compliance report
                doc_url: 'ee/user/compliance/compliance_report/'
          - doc_title: Description templates
            doc_url: 'ee/user/project/description_templates.html'
          - doc_title: Deploy keys
            doc_url: 'ee/user/project/deploy_keys/'
          - doc_title: Deploy tokens
            doc_url: 'ee/user/project/deploy_tokens/'
          - doc_title: File finder
            doc_url: 'ee/user/project/repository/file_finder.html'
          - doc_title: GitLab Pages
            doc_url: 'ee/user/project/pages/'
            docs:
              - doc_title: Create from scratch
                doc_url: 'ee/user/project/pages/getting_started/pages_from_scratch.html'
              - doc_title: Create using a CI/CD template
                doc_url: 'ee/user/project/pages/getting_started/pages_ci_cd_template.html'
              - doc_title: Create using a forked sample project
                doc_url: 'ee/user/project/pages/getting_started/pages_forked_sample_project.html'
              - doc_title: Create using a project template
                doc_url: 'ee/user/project/pages/getting_started/pages_new_project_template.html'
              - doc_title: Default domains, URLs, and baseurls
                doc_url: 'ee/user/project/pages/getting_started_part_one.html'
              - doc_title: Custom domains and SSL/TLS certificates
                doc_url: 'ee/user/project/pages/custom_domains_ssl_tls_certification/'
              - doc_title: DNS concepts
                doc_url: 'ee/user/project/pages/custom_domains_ssl_tls_certification/dns_concepts.html'
              - doc_title: SSL/TLS concepts
                doc_url: 'ee/user/project/pages/custom_domains_ssl_tls_certification/ssl_tls_concepts.html'
              - doc_title: Let's Encrypt integration
                doc_url: 'ee/user/project/pages/custom_domains_ssl_tls_certification/lets_encrypt_integration.html'
              - doc_title: Access control
                doc_url: 'ee/user/project/pages/pages_access_control.html'
              - doc_title: Redirects
                doc_url: 'ee/user/project/pages/redirects.html'
              - doc_title: Exploring GitLab Pages
                doc_url: 'ee/user/project/pages/introduction.html'
          - doc_title: Migrating projects
            doc_url: 'ee/user/project/import/'
            docs:
              - doc_title: Bitbucket Cloud
                doc_url: 'ee/user/project/import/bitbucket.html'
              - doc_title: Bitbucket Server
                doc_url: 'ee/user/project/import/bitbucket_server.html'
              - doc_title: ClearCase
                doc_url: 'ee/user/project/import/clearcase.html'
              - doc_title: CVS
                doc_url: 'ee/user/project/import/cvs.html'
              - doc_title: FogBugz
                doc_url: 'ee/user/project/import/fogbugz.html'
              - doc_title: GitHub
                doc_url: 'ee/user/project/import/github.html'
              - doc_title: GitLab.com
                doc_url: 'ee/user/project/import/gitlab_com.html'
              - doc_title: Gitea
                doc_url: 'ee/user/project/import/gitea.html'
              - doc_title: Jira
                doc_url: 'ee/user/project/import/jira.html'
              - doc_title: Perforce Helix
                doc_url: 'ee/user/project/import/perforce.html'
              - doc_title: Phabricator
                doc_url: 'ee/user/project/import/phabricator.html'
              - doc_title: Repo by manifest file
                doc_url: 'ee/user/project/import/manifest.html'
              - doc_title: Repo by URL
                doc_url: 'ee/user/project/import/repo_by_url.html'
              - doc_title: SVN
                doc_url: 'ee/user/project/import/svn.html'
              - doc_title: TFVC
                doc_url: 'ee/user/project/import/tfvc.html'
          - doc_title: Project import/export
            doc_url: 'ee/user/project/settings/import_export.html'
          - doc_title: Project/Group import/export rate limits
            doc_url: 'ee/user/admin_area/settings/import_export_rate_limits.html'
          - doc_title: Project import achive size limits
            doc_url: 'ee/security/project_import_decompressed_archive_size_limits.html'

      - category_title: Plan and track work
        category_url: 'ee/topics/plan_and_track.html'
        docs:
          - doc_title: Epics
            doc_url: 'ee/user/group/epics/'
            docs:
              - doc_title: Manage epics
                doc_url: 'ee/user/group/epics/manage_epics.html'
              - doc_title: Linked epics
                doc_url: 'ee/user/group/epics/linked_epics.html'
              - doc_title: Epic boards
                doc_url: 'ee/user/group/epics/epic_boards.html'
          - doc_title: Issues
            doc_url: 'ee/user/project/issues/'
            docs:
              - doc_title: Manage issues
                doc_url: 'ee/user/project/issues/managing_issues.html'
              - doc_title: Award emoji
                doc_url: 'ee/user/award_emojis.html'
              - doc_title: Confidential issues
                doc_url: 'ee/user/project/issues/confidential_issues.html'
              - doc_title: Crosslinking issues
                doc_url: 'ee/user/project/issues/crosslinking_issues.html'
              - doc_title: CSV export
                doc_url: 'ee/user/project/issues/csv_export.html'
              - doc_title: CSV import
                doc_url: 'ee/user/project/issues/csv_import.html'
              - doc_title: Design management
                doc_url: 'ee/user/project/issues/design_management.html'
              - doc_title: Due dates
                doc_url: 'ee/user/project/issues/due_dates.html'
              - doc_title: Issue boards
                doc_url: 'ee/user/project/issue_board.html'
              - doc_title: Multiple assignees
                doc_url: 'ee/user/project/issues/multiple_assignees_for_issues.html'
              - doc_title: Linked issues
                doc_url: 'ee/user/project/issues/related_issues.html'
              - doc_title: Service Desk
                doc_url: 'ee/user/project/service_desk.html'
              - doc_title: Sorting and ordering issue lists
                doc_url: 'ee/user/project/issues/sorting_issue_lists.html'
              - doc_title: Weight
                doc_url: 'ee/user/project/issues/issue_weight.html'
              - doc_title: Zoom meetings in issues
                doc_url: 'ee/user/project/issues/associate_zoom_meeting.html'
          - doc_title: Labels
            doc_url: 'ee/user/project/labels.html'
          - doc_title: Comments and threads
            doc_url: 'ee/user/discussions/'
          - doc_title: Customer relations (CRM)
            doc_url: 'ee/user/crm/'
          - doc_title: Iterations
            doc_url: 'ee/user/group/iterations/'
          - doc_title: Milestones
            doc_url: 'ee/user/project/milestones/'
            docs:
              - doc_title: Burndown and burnup charts
                doc_url: 'ee/user/project/milestones/burndown_and_burnup_charts.html'
          - doc_title: Requirements
            doc_url: 'ee/user/project/requirements/'
          - doc_title: Roadmaps
            doc_url: 'ee/user/group/roadmap/'
          - doc_title: Planning hierarchies
            doc_url: 'ee/user/group/planning_hierarchy/'
          - doc_title: Tasks
            doc_url: 'ee/user/tasks.html'
          - doc_title: Time tracking
            doc_url: 'ee/user/project/time_tracking.html'
          - doc_title: Wikis
            doc_url: 'ee/user/project/wiki/'
            docs:
              - doc_title: Group wikis
                doc_url: 'ee/user/project/wiki/group.html'
          - doc_title: Keyboard shortcuts
            doc_url: 'ee/user/shortcuts.html'
          - doc_title: Quick actions
            doc_url: 'ee/user/project/quick_actions.html'
            docs:
              - doc_title: Autocomplete characters
                doc_url: 'ee/user/project/autocomplete_characters.html'
          - doc_title: Markdown
            doc_url: 'ee/user/markdown.html'
            docs:
              - doc_title: AsciiDoc
                doc_url: 'ee/user/asciidoc.html'
              - doc_title: CSV files
                doc_url: 'ee/user/project/repository/csv.html'
          - doc_title: To-Do List
            doc_url: 'ee/user/todos.html'
          - doc_title: Using Git
            doc_url: 'ee/topics/git/'
            docs:
              - doc_title: Get started
                doc_url: 'ee/tutorials/make_your_first_git_commit.html'
              - doc_title: Terminology
                doc_url: 'ee/topics/git/terminology.html'
              - doc_title: Installing Git
                doc_url: 'ee/topics/git/how_to_install_git/'
              - doc_title: Command line Git
                doc_url: 'ee/gitlab-basics/start-using-git.html'
              - doc_title: Feature branch workflow
                doc_url: 'ee/gitlab-basics/feature_branch_workflow.html'
              - doc_title: Feature branch development
                doc_url: 'ee/topics/git/feature_branch_development.html'
              - doc_title: GitLab Flow
                doc_url: 'ee/topics/gitlab_flow.html'
              - doc_title: Add file to repository
                doc_url: 'ee/gitlab-basics/add-file.html'
              - doc_title: Bisect
                doc_url: 'ee/topics/git/bisect.html'
              - doc_title: Cherry-pick a commit
                doc_url: 'ee/topics/git/cherry_picking.html'
              - doc_title: Feature branching
                doc_url: 'ee/topics/git/feature_branching.html'
              - doc_title: File editing
                doc_url: 'ee/gitlab-basics/command-line-commands.html'
              - doc_title: Git add
                doc_url: 'ee/topics/git/git_add.html'
              - doc_title: Git log
                doc_url: 'ee/topics/git/git_log.html'
              - doc_title: Git stash
                doc_url: 'ee/topics/git/stash.html'
              - doc_title: Merge conflicts
                doc_url: 'ee/topics/git/merge_conflicts.html'
              - doc_title: Partial clone
                doc_url: 'ee/topics/git/partial_clone.html'
              - doc_title: Rebase, force-push, merge conflicts
                doc_url: 'ee/topics/git/git_rebase.html'
              - doc_title: Roll back commits
                doc_url: 'ee/topics/git/rollback_commits.html'
              - doc_title: Subtree
                doc_url: 'ee/topics/git/subtree.html'
              - doc_title: Tags
                doc_url: 'ee/topics/git/tags.html'
              - doc_title: Troubleshooting Git
                doc_url: 'ee/topics/git/troubleshooting_git.html'
              - doc_title: Undo with Git
                doc_url: 'ee/topics/git/numerous_undo_possibilities_in_git/'
              - doc_title: Unstage
                doc_url: 'ee/topics/git/unstage.html'
              - doc_title: Useful commands
                doc_url: 'ee/topics/git/useful_git_commands.html'
              - doc_title: Push options
                doc_url: 'ee/user/project/push_options.html'

      - category_title: Build your application
        category_url: 'ee/topics/build_your_application.html'
        docs:
          - doc_title: Repositories
            doc_url: 'ee/user/project/repository/'
            docs:
              - doc_title: Code owners
                doc_url: 'ee/user/project/code_owners.html'
              - doc_title: Snippets
                doc_url: 'ee/user/snippets.html'
              - doc_title: Branches
                doc_url: 'ee/user/project/repository/branches/'
              - doc_title: Default branch
                doc_url: 'ee/user/project/repository/branches/default.html'
              - doc_title: Forking workflow
                doc_url: 'ee/user/project/repository/forking_workflow.html'
              - doc_title: Git attributes
                doc_url: 'ee/user/project/git_attributes.html'
              - doc_title: Git LFS
                doc_url: 'ee/topics/git/lfs/'
              - doc_title: Jupyter notebook files
                doc_url: 'ee/user/project/repository/jupyter_notebooks/'
              - doc_title: Locked files
                doc_url: 'ee/user/project/file_lock.html'
              - doc_title: File Blame
                doc_url: 'ee/user/project/repository/git_blame.html'
              - doc_title: File History
                doc_url: 'ee/user/project/repository/git_history.html'
              - doc_title: Mirroring
                doc_url: 'ee/user/project/repository/mirror/'
                docs:
                  - doc_title: Bidirectional mirroring
                    doc_url: 'ee/user/project/repository/mirror/bidirectional.html'
                  - doc_title: Pull mirroring
                    doc_url: 'ee/user/project/repository/mirror/pull.html'
                  - doc_title: Push mirroring
                    doc_url: 'ee/user/project/repository/mirror/push.html'
              - doc_title: Protected branches
                doc_url: 'ee/user/project/protected_branches.html'
              - doc_title: Protected tags
                doc_url: 'ee/user/project/protected_tags.html'
              - doc_title: Push rules
                doc_url: 'ee/user/project/repository/push_rules.html'
              - doc_title: Reduce repository size
                doc_url: 'ee/user/project/repository/reducing_the_repo_size_using_git.html'
              - doc_title: Signed Commits
                doc_url: 'ee/user/project/repository/gpg_signed_commits/'
              - doc_title: Signing commits and tags with X.509
                doc_url: 'ee/user/project/repository/x509_signed_commits/'
              - doc_title: Syntax highlighting
                doc_url: 'ee/user/project/highlighting.html'
              - doc_title: Web Editor
                doc_url: 'ee/user/project/repository/web_editor.html'
              - doc_title: Web IDE
                doc_url: 'ee/user/project/web_ide/'
              - doc_title: Managing large repositories
                doc_url: 'ee/user/project/repository/managing_large_repositories.html'
          - doc_title: Merge requests
            doc_url: 'ee/user/project/merge_requests/'
            docs:
              - doc_title: Get started
                doc_url: 'ee/user/project/merge_requests/getting_started.html'
              - doc_title: Approvals
                doc_url: 'ee/user/project/merge_requests/approvals/'
                docs:
                  - doc_title: Approval rules
                    doc_url: 'ee/user/project/merge_requests/approvals/rules.html'
                  - doc_title: Approval settings
                    doc_url: 'ee/user/project/merge_requests/approvals/settings.html'
              - doc_title: Changes
                doc_url: 'ee/user/project/merge_requests/changes.html'
              - doc_title: Cherry pick changes
                doc_url: 'ee/user/project/merge_requests/cherry_pick_changes.html'
              - doc_title: Collaborate across forks
                doc_url: 'ee/user/project/merge_requests/allow_collaboration.html'
              - doc_title: Commit message templates
                doc_url: 'ee/user/project/merge_requests/commit_templates.html'
              - doc_title: Confidential merge requests
                doc_url: 'ee/user/project/merge_requests/confidential.html'
              - doc_title: Create merge requests
                doc_url: 'ee/user/project/merge_requests/creating_merge_requests.html'
              - doc_title: Draft merge requests
                doc_url: 'ee/user/project/merge_requests/drafts.html'
              - doc_title: Export merge requests to CSV
                doc_url: 'ee/user/project/merge_requests/csv_export.html'
              - doc_title: External status checks
                doc_url: 'ee/user/project/merge_requests/status_checks.html'
              - doc_title: Merge methods
                doc_url: 'ee/user/project/merge_requests/methods/'
                docs:
                  - doc_title: Squash and merge
                    doc_url: 'ee/user/project/merge_requests/squash_and_merge.html'
              - doc_title: Merge request dependencies
                doc_url: 'ee/user/project/merge_requests/merge_request_dependencies.html'
              - doc_title: Merge request widgets
                doc_url: 'ee/user/project/merge_requests/widgets.html'
              - doc_title: Merge when pipeline succeeds
                doc_url: 'ee/user/project/merge_requests/merge_when_pipeline_succeeds.html'
              - doc_title: Merge conflicts
                doc_url: 'ee/user/project/merge_requests/conflicts.html'
              - doc_title: Reverting changes
                doc_url: 'ee/user/project/merge_requests/revert_changes.html'
              - doc_title: Reviewing and managing merge requests
                doc_url: 'ee/user/project/merge_requests/reviews/'
                docs:
                  - doc_title: Suggestions
                    doc_url: 'ee/user/project/merge_requests/reviews/suggestions.html'
              - doc_title: Versions
                doc_url: 'ee/user/project/merge_requests/versions.html'
              - doc_title: Workflows
                doc_url: 'ee/user/project/merge_requests/authorization_for_merge_requests.html'
          - doc_title: CI/CD
            doc_url: 'ee/ci/'
            docs:
              - doc_title: Get started
                doc_url: 'ee/ci/quick_start/'
                docs:
                  - doc_title: CI/CD concepts
                    doc_url: 'ee/ci/introduction/'
                  - doc_title: Migrate from CircleCI
                    doc_url: 'ee/ci/migration/circleci.html'
                  - doc_title: Migrate from Jenkins
                    doc_url: 'ee/ci/migration/jenkins.html'
                  - doc_title: Enable or disable CI/CD
                    doc_url: 'ee/ci/enable_or_disable_ci.html'
              - doc_title: Pipelines
                doc_url: 'ee/ci/pipelines/'
                docs:
                  - doc_title: Scheduled pipelines
                    doc_url: 'ee/ci/pipelines/schedules.html'
                  - doc_title: Trigger a pipeline
                    doc_url: 'ee/ci/triggers/'
                  - doc_title: Customize pipeline configuration
                    doc_url: 'ee/ci/pipelines/settings.html'
                  - doc_title: Pipeline architectures
                    doc_url: 'ee/ci/pipelines/pipeline_architectures.html'
                  - doc_title: Pipeline efficiency
                    doc_url: 'ee/ci/pipelines/pipeline_efficiency.html'
                  - doc_title: Pipeline resource groups
                    doc_url: ee/ci/resource_groups/
                  - doc_title: Directed acyclic graph (DAG)
                    doc_url: 'ee/ci/directed_acyclic_graph/'
                  - doc_title: Multi-project pipelines
                    doc_url: 'ee/ci/pipelines/multi_project_pipelines.html'
                  - doc_title: Parent-child pipelines
                    doc_url: 'ee/ci/pipelines/parent_child_pipelines.html'
                  - doc_title: Merge request pipelines
                    doc_url: 'ee/ci/pipelines/merge_request_pipelines.html'
                  - doc_title: Merged results pipelines
                    doc_url: 'ee/ci/pipelines/merged_results_pipelines.html'
                  - doc_title: Merge trains
                    doc_url: 'ee/ci/pipelines/merge_trains.html'
              - doc_title: Jobs
                doc_url: 'ee/ci/jobs/'
                docs:
                  - doc_title: Choose when jobs run
                    doc_url: 'ee/ci/jobs/job_control.html'
                  - doc_title: CI/CD job token
                    doc_url: 'ee/ci/jobs/ci_job_token.html'
                  - doc_title: Access a terminal for a running job
                    doc_url: 'ee/ci/interactive_web_terminal/'
                  - doc_title: Format scripts and job logs
                    doc_url: 'ee/ci/yaml/script.html'
                  - doc_title: Git submodules
                    doc_url: 'ee/ci/git_submodules.html'
              - doc_title: Variables
                doc_url: 'ee/ci/variables/'
                docs:
                  - doc_title: Predefined variables
                    doc_url: 'ee/ci/variables/predefined_variables.html'
                  - doc_title: Where variables can be used
                    doc_url: 'ee/ci/variables/where_variables_can_be_used.html'
              - doc_title: Cache and artifacts
                doc_url: 'ee/ci/caching/'
                docs:
                  - doc_title: Job artifacts
                    doc_url: 'ee/ci/pipelines/job_artifacts.html'
                  - doc_title: Pipeline artifacts
                    doc_url: 'ee/ci/pipelines/pipeline_artifacts.html'
              - doc_title: '.gitlab-ci.yml'
                doc_url: 'ee/ci/yaml/gitlab_ci_yaml.html'
                docs:
                  - doc_title: '.gitlab-ci.yml reference'
                    doc_url: 'ee/ci/yaml/'
                  - doc_title: 'Optimize your YAML files'
                    doc_url: 'ee/ci/yaml/yaml_optimization.html'
                  - doc_title: Validate syntax
                    doc_url: 'ee/ci/lint.html'
                  - doc_title: Pipeline Editor
                    doc_url: 'ee/ci/pipeline_editor/'
                  - doc_title: Artifacts reports
                    doc_url: 'ee/ci/yaml/artifacts_reports.html'
                  - doc_title: Include examples
                    doc_url: 'ee/ci/yaml/includes.html'
                  - doc_title: Workflow examples
                    doc_url: 'ee/ci/yaml/workflow.html'
              - doc_title: Docker
                doc_url: 'ee/ci/docker/'
                docs:
                  - doc_title: Run CI/CD jobs in Docker containers
                    doc_url: 'ee/ci/docker/using_docker_images.html'
                  - doc_title: Use Docker to build Docker images
                    doc_url: 'ee/ci/docker/using_docker_build.html'
                  - doc_title: Use kaniko to build Docker images
                    doc_url: 'ee/ci/docker/using_kaniko.html'
              - doc_title: Services
                doc_url: 'ee/ci/services/'
                docs:
                  - doc_title: MySQL service
                    doc_url: 'ee/ci/services/mysql.html'
                  - doc_title: PostgreSQL service
                    doc_url: 'ee/ci/services/postgres.html'
                  - doc_title: Redis service
                    doc_url: 'ee/ci/services/redis.html'
                  - doc_title: GitLab as a service
                    doc_url: 'ee/ci/services/gitlab.html'
              - doc_title: Auto DevOps
                doc_url: 'ee/topics/autodevops/'
                docs:
                  - doc_title: Requirements
                    doc_url: 'ee/topics/autodevops/requirements.html'
                  - doc_title: Stages
                    doc_url: 'ee/topics/autodevops/stages.html'
                  - doc_title: Customize
                    doc_url: 'ee/topics/autodevops/customize.html'
                  - doc_title: Upgrade PostgreSQL
                    doc_url: 'ee/topics/autodevops/upgrading_postgresql.html'
                  - doc_title: Upgrade Auto Deploy dependencies
                    doc_url: 'ee/topics/autodevops/upgrading_auto_deploy_dependencies.html'
                  - doc_title: Deploy to GKE
                    doc_url: 'ee/topics/autodevops/cloud_deployments/auto_devops_with_gke.html'
                  - doc_title: Deploy to ECS
                    doc_url: 'ee/topics/autodevops/cloud_deployments/auto_devops_with_ecs.html'
                  - doc_title: Deploy to EC2
                    doc_url: 'ee/topics/autodevops/cloud_deployments/auto_devops_with_ec2.html'
                  - doc_title: Troubleshooting
                    doc_url: 'ee/topics/autodevops/troubleshooting.html'
              - doc_title: Testing
                doc_url: 'ee/ci/testing/'
                docs:
                  - doc_title: Accessibility testing
                    doc_url: 'ee/ci/testing/accessibility_testing.html'
                  - doc_title: Browser performance testing
                    doc_url: 'ee/ci/testing/browser_performance_testing.html'
                  - doc_title: Code quality
                    doc_url: 'ee/ci/testing/code_quality.html'
                  - doc_title: Fail fast testing
                    doc_url: 'ee/ci/testing/fail_fast_testing.html'
                  - doc_title: Load performance testing
                    doc_url: 'ee/ci/testing/load_performance_testing.html'
                  - doc_title: Metrics reports
                    doc_url: 'ee/ci/testing/metrics_reports.html'
                  - doc_title: Test cases
                    doc_url: 'ee/ci/test_cases/'
                  - doc_title: Test coverage visualization
                    doc_url: 'ee/ci/testing/test_coverage_visualization.html'
                  - doc_title: Unit test reports
                    doc_url: 'ee/ci/testing/unit_test_reports.html'
                  - doc_title: Unit test report examples
                    doc_url: 'ee/ci/testing/unit_test_report_examples.html'
              - doc_title: SSH keys
                doc_url: 'ee/ci/ssh_keys/'
              - doc_title: External secrets
                doc_url: 'ee/ci/secrets/'
              - doc_title: Connect to cloud services
                doc_url: 'ee/ci/cloud_services/'
                docs:
                  - doc_title: Authenticating with HashiCorp Vault
                    doc_url: 'ee/ci/examples/authenticating-with-hashicorp-vault/'
                  - doc_title: Configure OpenID Connect in AWS
                    doc_url: 'ee/ci/cloud_services/aws/'
                  - doc_title: Configure OpenID Connect with Google Cloud
                    doc_url: 'ee/ci/cloud_services/google_cloud/'
              - doc_title: ChatOps
                doc_url: 'ee/ci/chatops/'
              - doc_title: External repository integrations
                doc_url: 'ee/ci/ci_cd_for_external_repos/'
                docs:
                  - doc_title: Bitbucket Cloud
                    doc_url: 'ee/ci/ci_cd_for_external_repos/bitbucket_integration.html'
                  - doc_title: GitHub
                    doc_url: 'ee/ci/ci_cd_for_external_repos/github_integration.html'
              - doc_title: CI/CD examples
                doc_url: 'ee/ci/examples/'
                docs:
                  - doc_title: Deployment with Dpl
                    doc_url: 'ee/ci/examples/deployment/'
                  - doc_title: End-to-end testing
                    doc_url: 'ee/ci/examples/end_to_end_testing_webdriverio/'
                  - doc_title: NPM with semantic-release
                    doc_url: 'ee/ci/examples/semantic-release.html'
                  - doc_title: PHP with PHPunit and atoum
                    doc_url: 'ee/ci/examples/php.html'
                  - doc_title: PHP with NPM and SCP
                    doc_url: 'ee/ci/examples/deployment/composer-npm-deploy.html'
                  - doc_title: PHP with Laravel and Envoy
                    doc_url: 'ee/ci/examples/laravel_with_gitlab_and_envoy/'
              - doc_title: Troubleshooting CI/CD
                doc_url: 'ee/ci/troubleshooting.html'

          - doc_title: Runners
            doc_url: 'runner/'
            docs:
              - doc_title: Runner SaaS
                doc_url: 'ee/ci/runners/'
                docs:
                  - doc_title: Linux
                    doc_url: 'ee/ci/runners/saas/linux_saas_runner.html'
                  - doc_title: macOS
                    doc_url: 'ee/ci/runners/saas/macos_saas_runner.html'
                    docs:
                      - doc_title: VM instances
                        doc_url: 'ee/ci/runners/saas/macos/environment.html'
                      - doc_title: Code signing
                        doc_url: 'ee/ci/runners/saas/macos/codesigning.html'
                  - doc_title: Windows
                    doc_url: 'ee/ci/runners/saas/windows_saas_runner.html'
              - doc_title: The scope of runners
                doc_url: 'ee/ci/runners/runners_scope.html'
              - doc_title: Register a runner
                doc_url: 'runner/register/'
                docs:
                  - doc_title: Examples
                    doc_url: 'runner/examples/gitlab.html'
              - doc_title: Runner executors
                doc_url: 'runner/executors/'
                docs:
                  - doc_title: Custom
                    doc_url: 'runner/executors/custom.html'
                    docs:
                      - doc_title: libvirt
                        doc_url: 'runner/executors/custom_examples/libvirt.html'
                      - doc_title: LXD
                        doc_url: 'runner/executors/custom_examples/lxd.html'
                  - doc_title: Docker
                    doc_url: 'runner/executors/docker.html'
                  - doc_title: Docker Machine
                    doc_url: 'runner/executors/docker_machine.html'
                  - doc_title: Kubernetes
                    doc_url: 'runner/executors/kubernetes.html'
                  - doc_title: Shell
                    doc_url: 'runner/executors/shell.html'
                    docs:
                      - doc_title: Supported shells
                        doc_url: 'runner/shells/'
                  - doc_title: SSH
                    doc_url: 'runner/executors/ssh.html'
                  - doc_title: Parallels
                    doc_url: 'runner/executors/parallels.html'
                  - doc_title: Virtual Box
                    doc_url: 'runner/executors/virtualbox.html'
              - doc_title: Configure runners
                doc_url: 'ee/ci/runners/configure_runners.html'
              - doc_title: Scale a fleet of runners
                doc_url: 'runner/fleet_scaling/'
              - doc_title: Best practices for large repositories
                doc_url: 'ee/ci/large_repositories/'

          - doc_title: Packages & Registries
            doc_url: 'ee/user/packages/'
            docs:
              - doc_title: Package Registry
                doc_url: 'ee/user/packages/package_registry/'
                docs:
                  - doc_title: Composer
                    doc_url: 'ee/user/packages/composer_repository/'
                  - doc_title: Conan
                    doc_url: 'ee/user/packages/conan_repository/'
                  - doc_title: Debian
                    doc_url: 'ee/user/packages/debian_repository/'
                  - doc_title: Go Proxy
                    doc_url: 'ee/user/packages/go_proxy/'
                  - doc_title: Helm
                    doc_url: 'ee/user/packages/helm_repository/'
                  - doc_title: Maven
                    doc_url: 'ee/user/packages/maven_repository/'
                  - doc_title: npm
                    doc_url: 'ee/user/packages/npm_registry/'
                  - doc_title: NuGet
                    doc_url: 'ee/user/packages/nuget_repository/'
                  - doc_title: PyPI
                    doc_url: 'ee/user/packages/pypi_repository/'
                  - doc_title: Ruby gems
                    doc_url: 'ee/user/packages/rubygems_registry/'
                  - doc_title: Generic
                    doc_url: 'ee/user/packages/generic_packages/'
                  - doc_title: Store all packages in one project
                    doc_url: 'ee/user/packages/workflows/project_registry.html'
                  - doc_title: Monorepo workflows
                    doc_url: 'ee/user/packages/workflows/working_with_monorepos.html'
                  - doc_title: Reduce Package Registry storage
                    doc_url: 'ee/user/packages/package_registry/reduce_package_registry_storage.html'
              - doc_title: Container Registry
                doc_url: 'ee/user/packages/container_registry/'
                docs:
                  - doc_title: Reduce Container Registry storage
                    doc_url: 'ee/user/packages/container_registry/reduce_container_registry_storage.html'
                  - doc_title: Reduce Container Registry data transfers
                    doc_url: 'ee/user/packages/container_registry/reduce_container_registry_data_transfer.html'
              - doc_title: Infrastructure Registry
                doc_url: 'ee/user/packages/infrastructure_registry/'
                docs:
                  - doc_title: Terraform module registry
                    doc_url: 'ee/user/packages/terraform_module_registry/'
              - doc_title: Dependency Proxy
                doc_url: 'ee/user/packages/dependency_proxy/'
                docs:
                  - doc_title: Reduce Dependency Proxy storage
                    doc_url: 'ee/user/packages/dependency_proxy/reduce_dependency_proxy_storage.html'
      - category_title: Secure your application
        category_url: 'ee/user/application_security/'
        docs:
          - doc_title: Security Configuration
            doc_url: 'ee/user/application_security/configuration/'
          - doc_title: Container Scanning
            doc_url: 'ee/user/application_security/container_scanning/'
          - doc_title: Dependency Scanning
            doc_url: 'ee/user/application_security/dependency_scanning/'
            docs:
              - doc_title: Dependency Scanning Analyzers
                doc_url: 'ee/user/application_security/dependency_scanning/analyzers.html'
              - doc_title: Dependency List
                doc_url: 'ee/user/application_security/dependency_list/'
          - doc_title: Static Application Security Testing
            doc_url: 'ee/user/application_security/sast/'
            docs:
              - doc_title: Customize rulesets
                doc_url: 'ee/user/application_security/sast/customize_rulesets.html'
              - doc_title: SAST Analyzers
                doc_url: 'ee/user/application_security/sast/analyzers.html'
          - doc_title: Infrastructure as Code (IaC) Scanning
            doc_url: 'ee/user/application_security/iac_scanning/'
          - doc_title: Secret Detection
            doc_url: 'ee/user/application_security/secret_detection/'
            docs:
              - doc_title: Post-processing and revocation
                doc_url: 'ee/user/application_security/secret_detection/post_processing.html'
          - doc_title: Dynamic Application Security Testing (DAST)
            doc_url: 'ee/user/application_security/dast/'
            docs:
              - doc_title: DAST browser-based crawler
                doc_url: 'ee/user/application_security/dast/browser_based.html'
                docs:
                  - doc_title: Vulnerability checks
                    doc_url: 'ee/user/application_security/dast/checks/'
              - doc_title: DAST API
                doc_url: 'ee/user/application_security/dast_api/'
              - doc_title: DAST Troubleshooting
                doc_url: 'ee/user/application_security/dast/dast_troubleshooting.html'
              - doc_title: Run DAST offline
                doc_url: 'ee/user/application_security/dast/run_dast_offline.html'
          - doc_title: API Fuzzing
            doc_url: 'ee/user/application_security/api_fuzzing/'
            docs:
              - doc_title: HTTP Archive format
                doc_url: 'ee/user/application_security/api_fuzzing/create_har_files.html'
          - doc_title: Coverage-guided fuzz testing
            doc_url: 'ee/user/application_security/coverage_fuzzing/'
          - doc_title: Security Dashboard
            doc_url: 'ee/user/application_security/security_dashboard/'
          - doc_title: Offline Environments
            doc_url: 'ee/user/application_security/offline_deployments/'
          - doc_title: Vulnerability Report
            doc_url: 'ee/user/application_security/vulnerability_report/'
            docs:
              - doc_title: View vulnerabilities in a pipeline
                doc_url: 'ee/user/application_security/vulnerability_report/pipeline.html'
              - doc_title: Generate test vulnerabilities
                doc_url: 'ee/user/application_security/generate_test_vulnerabilities/'
          - doc_title: Vulnerability Page
            doc_url: 'ee/user/application_security/vulnerabilities/'
          - doc_title: Vulnerability severity levels
            doc_url: 'ee/user/application_security/vulnerabilities/severities.html'
          - doc_title: CVE ID requests
            doc_url: 'ee/user/application_security/cve_id_request.html'
          - doc_title: Policies
            doc_url: 'ee/user/application_security/policies/'
            docs:
              - doc_title: Scan execution policies
                doc_url: 'ee/user/application_security/policies/scan-execution-policies.html'
              - doc_title: Scan result policies
                doc_url: 'ee/user/application_security/policies/scan-result-policies.html'
          - doc_title: Security scanner integration
            doc_url: 'ee/development/integrations/secure.html'
          - doc_title: Secure and Protect Terminology
            doc_url: 'ee/user/application_security/terminology/'

      - category_title: Deploy and release your application
        category_url: 'ee/topics/release_your_application.html'
        docs:
          - doc_title: Environments and deployments
            doc_url: 'ee/ci/environments/'
            docs:
              - doc_title: Environments Dashboard
                doc_url: 'ee/ci/environments/environments_dashboard.html'
              - doc_title: Protected environments
                doc_url: 'ee/ci/environments/protected_environments.html'
              - doc_title: Deployment safety
                doc_url: 'ee/ci/environments/deployment_safety.html'
              - doc_title: Deployment approvals
                doc_url: 'ee/ci/environments/deployment_approvals.html'
              - doc_title: Roll out an application incrementally
                doc_url: 'ee/ci/environments/incremental_rollouts.html'
              - doc_title: Deploy to AWS
                doc_url: 'ee/ci/cloud_deployment/'
              - doc_title: Deploy to Amazon ECS
                doc_url: 'ee/ci/cloud_deployment/ecs/deploy_to_aws_ecs.html'
          - doc_title: Releases
            doc_url: 'ee/user/project/releases/'
            docs:
              - doc_title: Release CI/CD examples
                doc_url: 'ee/user/project/releases/release_cicd_examples.html'
              - doc_title: Release CLI tool
                doc_url: 'ee/user/project/releases/release_cli.html'
              - doc_title: Release fields
                doc_url: 'ee/user/project/releases/release_fields.html'
          - doc_title: Review Apps
            doc_url: 'ee/ci/review_apps/'
          - doc_title: Feature flags
            doc_url: 'ee/operations/feature_flags.html'
      - category_title: Monitor application performance
        category_url: 'ee/operations/'
        docs:
          - doc_title: Error Tracking
            doc_url: 'ee/operations/error_tracking.html'
          - doc_title: Tracing
            doc_url: 'ee/operations/tracing.html'
          - doc_title: Product analytics
            doc_url: 'ee/operations/product_analytics.html'
          - doc_title: Incident management
            doc_url: 'ee/operations/incident_management/'
            docs:
              - doc_title: Alerts
                doc_url: 'ee/operations/incident_management/alerts.html'
              - doc_title: Escalation policies
                doc_url: 'ee/operations/incident_management/escalation_policies.html'
              - doc_title: Paging and notifications
                doc_url: 'ee/operations/incident_management/paging.html'
              - doc_title: Incidents
                doc_url: 'ee/operations/incident_management/incidents.html'
                docs:
                  - doc_title: Linked resources
                    doc_url: 'ee/operations/incident_management/linked_resources.html'
              - doc_title: Integrations
                doc_url: 'ee/operations/incident_management/integrations.html'
              - doc_title: Status page
                doc_url: 'ee/operations/incident_management/status_page.html'
              - doc_title: On-call schedules
                doc_url: 'ee/operations/incident_management/oncall_schedules.html'
          - doc_title: Metrics dashboard
            doc_url: 'ee/operations/metrics/'
            docs:
              - doc_title: Custom dashboards
                doc_url: 'ee/operations/metrics/dashboards/'
                docs:
                  - doc_title: GitLab-defined metrics dashboards
                    doc_url: 'ee/operations/metrics/dashboards/default.html'
                  - doc_title: Dashboard YAML properties
                    doc_url: 'ee/operations/metrics/dashboards/yaml.html'
                  - doc_title: Dashboard settings
                    doc_url: 'ee/operations/metrics/dashboards/settings.html'
                  - doc_title: Panel types for dashboards
                    doc_url: 'ee/operations/metrics/dashboards/panel_types.html'
                  - doc_title: Unit formats reference
                    doc_url: 'ee/operations/metrics/dashboards/yaml_number_format.html'
                  - doc_title: Using variables
                    doc_url: 'ee/operations/metrics/dashboards/variables.html'
                  - doc_title: Templates for custom dashboards
                    doc_url: 'ee/operations/metrics/dashboards/develop.html'
                  - doc_title: Templating variables for dashboards
                    doc_url: 'ee/operations/metrics/dashboards/templating_variables.html'
              - doc_title: Embedding metrics in Grafana
                doc_url: 'ee/operations/metrics/embed_grafana.html'
              - doc_title: Embedding metrics in Markdown
                doc_url: 'ee/operations/metrics/embed.html'
              - doc_title: Metrics library
                doc_url: 'ee/user/project/integrations/prometheus_library/'
                docs:
                  - doc_title: Monitoring AWS resources
                    doc_url: 'ee/user/project/integrations/prometheus_library/cloudwatch.html'
                  - doc_title: HAProxy
                    doc_url: 'ee/user/project/integrations/prometheus_library/haproxy.html'
                  - doc_title: Kubernetes
                    doc_url: 'ee/user/project/integrations/prometheus_library/kubernetes.html'
                  - doc_title: NGINX
                    doc_url: 'ee/user/project/integrations/prometheus_library/nginx.html'
                  - doc_title: NGINX Ingress
                    doc_url: 'ee/user/project/integrations/prometheus_library/nginx_ingress.html'
                  - doc_title: NGINX Ingress VTS
                    doc_url: 'ee/user/project/integrations/prometheus_library/nginx_ingress_vts.html'
              - doc_title: Set up alerts for metrics
                doc_url: 'ee/operations/metrics/alerts.html'
      - category_title: Monitor runner performance
        category_url: 'runner/monitoring/'
      - category_title: Manage your infrastructure
        category_url: 'ee/user/infrastructure/'
        docs:
          - doc_title: Infrastructure as Code
            doc_url: 'ee/user/infrastructure/iac/'
            docs:
              - doc_title: Terraform state
                doc_url: 'ee/user/infrastructure/iac/terraform_state.html'
              - doc_title: Terraform integration in merge requests
                doc_url: 'ee/user/infrastructure/iac/mr_integration.html'
              - doc_title: Troubleshoot Terraform
                doc_url: 'ee/user/infrastructure/iac/troubleshooting.html'
          - doc_title: Create Kubernetes clusters
            doc_url: 'ee/user/clusters/create/'
            docs:
              - doc_title: Amazon EKS
                doc_url: 'ee/user/infrastructure/clusters/connect/new_eks_cluster.html'
              - doc_title: Google GKE
                doc_url: 'ee/user/infrastructure/clusters/connect/new_gke_cluster.html'
              - doc_title: Civo
                doc_url: 'ee/user/infrastructure/clusters/connect/new_civo_cluster.html'
          - doc_title: Connect Kubernetes clusters
            doc_url: 'ee/user/clusters/agent/'
            docs:
              - doc_title: GitOps workflow
                doc_url: 'ee/user/clusters/agent/gitops.html'
                docs:
                  - doc_title: Manage Kubernetes secrets
                    doc_url: 'ee/user/clusters/agent/gitops/secrets_management.html'
                  - doc_title: Track cluster resources
                    doc_url: 'ee/user/infrastructure/clusters/deploy/inventory_object.html'
              - doc_title: GitLab CI/CD workflow
                doc_url: 'ee/user/clusters/agent/ci_cd_workflow.html'
                docs:
                  - doc_title: Manage cluster applications
                    doc_url: 'ee/user/clusters/management_project_template.html'
              - doc_title: Install the agent for Kubernetes
                doc_url: 'ee/user/clusters/agent/install/'
              - doc_title: Work with the agent for Kubernetes
                doc_url: 'ee/user/clusters/agent/work_with_agent.html'
              - doc_title: Operational container scanning
                doc_url: 'ee/user/clusters/agent/vulnerabilities.html'
              - doc_title: Troubleshoot the agent for Kubernetes
                doc_url: 'ee/user/clusters/agent/troubleshooting.html'
              - doc_title: Migrate to the agent for Kubernetes
                doc_url: 'ee/user/infrastructure/clusters/migrate_to_gitlab_agent.html'
          - doc_title: Runbooks
            doc_url: 'ee/user/project/clusters/runbooks/'
      - category_title: Analyze GitLab usage
        category_url: 'ee/user/analytics/'
        docs:
          - doc_title: CI/CD analytics
            doc_url: 'ee/user/analytics/ci_cd_analytics.html'
          - doc_title: Code review analytics
            doc_url: 'ee/user/analytics/code_review_analytics.html'
          - doc_title: Contribution analytics
            doc_url: 'ee/user/group/contribution_analytics/'
          - doc_title: DevOps adoption by instance
            doc_url: 'ee/user/admin_area/analytics/dev_ops_reports.html'
          - doc_title: DevOps adoption by group
            doc_url: 'ee/user/group/devops_adoption/'
          - doc_title: Insights for projects
            doc_url: 'ee/user/project/insights/'
          - doc_title: Insights for groups
            doc_url: 'ee/user/group/insights/'
          - doc_title: Issue analytics for projects
            doc_url: 'ee/user/analytics/issue_analytics.html'
          - doc_title: Issue analytics for groups
            doc_url: 'ee/user/group/issues_analytics/'
          - doc_title: Merge request analytics
            doc_url: 'ee/user/analytics/merge_request_analytics.html'
          - doc_title: Productivity analytics
            doc_url: 'ee/user/analytics/productivity_analytics.html'
          - doc_title: Repository analytics
            doc_url: 'ee/user/analytics/repository_analytics.html'
          - doc_title: Repository analytics for groups
            doc_url: 'ee/user/group/repositories_analytics/'
          - doc_title: Usage trends
            doc_url: 'ee/user/admin_area/analytics/usage_trends.html'
          - doc_title: Value stream analytics for projects
            doc_url: 'ee/user/analytics/value_stream_analytics.html'
          - doc_title: Value stream analytics for groups
            doc_url: 'ee/user/group/value_stream_analytics/'
          - doc_title: Instance-level analytics
            doc_url: 'ee/user/admin_area/analytics/'
          - doc_title: Audit events
            doc_url: 'ee/administration/audit_events.html'
          - doc_title: Audit event streaming
            doc_url: 'ee/administration/audit_event_streaming.html'
          - doc_title: Audit reports
            doc_url: 'ee/administration/audit_reports.html'
          - doc_title: Metrics
            doc_url: 'ee/administration/monitoring/'
            docs:
              - doc_title: Configure GitLab
                doc_url: 'ee/administration/monitoring/performance/gitlab_configuration.html'
              - doc_title: Configure Grafana
                doc_url: 'ee/administration/monitoring/performance/grafana_configuration.html'
              - doc_title: GitHub imports
                doc_url: 'ee/administration/monitoring/github_imports.html'
              - doc_title: GitLab exporter
                doc_url: 'ee/administration/monitoring/prometheus/gitlab_exporter.html'
              - doc_title: GitLab Prometheus metrics
                doc_url: 'ee/administration/monitoring/prometheus/gitlab_metrics.html'
              - doc_title: Self monitoring project
                doc_url: 'ee/administration/monitoring/gitlab_self_monitoring_project/'
              - doc_title: IP allowlist endpoints
                doc_url: 'ee/administration/monitoring/ip_allowlist.html'
              - doc_title: Node exporter
                doc_url: 'ee/administration/monitoring/prometheus/node_exporter.html'
              - doc_title: PGBouncer exporter
                doc_url: 'ee/administration/monitoring/prometheus/pgbouncer_exporter.html'
              - doc_title: PostgreSQL server exporter
                doc_url: 'ee/administration/monitoring/prometheus/postgres_exporter.html'
              - doc_title: Prometheus
                doc_url: 'ee/administration/monitoring/prometheus/'
              - doc_title: Performance bar
                doc_url: 'ee/administration/monitoring/performance/performance_bar.html'
              - doc_title: Performance monitoring
                doc_url: 'ee/administration/monitoring/performance/'
              - doc_title: Redis exporter
                doc_url: 'ee/administration/monitoring/prometheus/redis_exporter.html'
              - doc_title: Registry exporter
                doc_url: 'ee/administration/monitoring/prometheus/registry_exporter.html'
              - doc_title: Usage statistics
                doc_url: 'ee/user/admin_area/settings/usage_statistics.html'
              - doc_title: Web exporter
                doc_url: 'ee/administration/monitoring/prometheus/web_exporter.html'
  - section_title: Use the API
    section_url: 'ee/api/'
    section_categories:
      - category_title: REST API resources
        category_url: 'ee/api/api_resources.html'
        docs:
          - doc_title: .gitignore (templates)
            doc_url: 'ee/api/templates/gitignores.html'
          - doc_title: .gitlab-ci.yml (templates)
            doc_url: 'ee/api/templates/gitlab_ci_ymls.html'
          - doc_title: Access requests
            doc_url: 'ee/api/access_requests.html'
          - doc_title: Agent for Kubernetes
            doc_url: 'ee/api/cluster_agents.html'
          - doc_title: Alert Management
            doc_url: 'ee/api/alert_management_alerts.html'
          - doc_title: Appearance (application)
            doc_url: 'ee/api/appearance.html'
          - doc_title: Applications
            doc_url: 'ee/api/applications.html'
          - doc_title: Audit events
            doc_url: 'ee/api/audit_events.html'
          - doc_title: Avatar
            doc_url: 'ee/api/avatar.html'
          - doc_title: Award emoji
            doc_url: 'ee/api/award_emoji.html'
          - doc_title: Badges (project)
            doc_url: 'ee/api/project_badges.html'
          - doc_title: Badges (group)
            doc_url: 'ee/api/group_badges.html'
          - doc_title: Branches
            doc_url: 'ee/api/branches.html'
          - doc_title: Broadcast messages
            doc_url: 'ee/api/broadcast_messages.html'
          - doc_title: Commits
            doc_url: 'ee/api/commits.html'
          - doc_title: Composer
            doc_url: 'ee/api/packages/composer.html'
          - doc_title: Conan
            doc_url: 'ee/api/packages/conan.html'
          - doc_title: Container Registry
            doc_url: 'ee/api/container_registry.html'
          - doc_title: Custom attributes
            doc_url: 'ee/api/custom_attributes.html'
          - doc_title: Dashboard annotations
            doc_url: 'ee/api/metrics_dashboard_annotations.html'
          - doc_title: Debian
            doc_url: 'ee/api/packages/debian.html'
          - doc_title: Debian group distributions
            doc_url: 'ee/api/packages/debian_group_distributions.html'
          - doc_title: Debian project distributions
            doc_url: 'ee/api/packages/debian_project_distributions.html'
          - doc_title: Dependencies
            doc_url: 'ee/api/dependencies.html'
          - doc_title: Dependency Proxy
            doc_url: 'ee/api/dependency_proxy.html'
          - doc_title: Deploy keys
            doc_url: 'ee/api/deploy_keys.html'
          - doc_title: Deploy tokens
            doc_url: 'ee/api/deploy_tokens.html'
          - doc_title: Deployments
            doc_url: 'ee/api/deployments.html'
          - doc_title: Discussions
            doc_url: 'ee/api/discussions.html'
          - doc_title: Dockerfile (templates)
            doc_url: 'ee/api/templates/dockerfiles.html'
          - doc_title: DORA4 metrics
            doc_url: 'ee/api/dora/metrics.html'
          - doc_title: Environments
            doc_url: 'ee/api/environments.html'
          - doc_title: Epics
            doc_url: 'ee/api/epics.html'
          - doc_title: Error tracking
            doc_url: 'ee/api/error_tracking.html'
          - doc_title: Events
            doc_url: 'ee/api/events.html'
          - doc_title: Experiments
            doc_url: 'ee/api/experiments.html'
          - doc_title: External status checks
            doc_url: 'ee/api/status_checks.html'
          - doc_title: Feature flags
            doc_url: 'ee/api/feature_flags.html'
          - doc_title: Feature flag user lists
            doc_url: 'ee/api/feature_flag_user_lists.html'
          - doc_title: Freeze periods
            doc_url: 'ee/api/freeze_periods.html'
          - doc_title: Geo nodes
            doc_url: 'ee/api/geo_nodes.html'
          - doc_title: GitLab Pages
            doc_url: 'ee/api/pages.html'
          - doc_title: Go Proxy
            doc_url: 'ee/api/packages/go_proxy.html'
          - doc_title: Group access tokens
            doc_url: 'ee/api/group_access_tokens.html'
          - doc_title: Group activity analytics
            doc_url: 'ee/api/group_activity_analytics.html'
          - doc_title: Group Import/Export
            doc_url: 'ee/api/group_import_export.html'
          - doc_title: Group relations export
            doc_url: 'ee/api/group_relations_export.html'
          - doc_title: Group repository storage moves
            doc_url: 'ee/api/group_repository_storage_moves.html'
          - doc_title: Groups
            doc_url: 'ee/api/groups.html'
          - doc_title: Helm
            doc_url: 'ee/api/packages/helm.html'
          - doc_title: Import
            doc_url: 'ee/api/import.html'
          - doc_title: Instance-level CI/CD variables
            doc_url: 'ee/api/instance_level_ci_variables.html'
          - doc_title: Integrations
            doc_url: 'ee/api/integrations.html'
          - doc_title: Invitations
            doc_url: 'ee/api/invitations.html'
          - doc_title: Issue boards (project)
            doc_url: 'ee/api/boards.html'
          - doc_title: Issue boards (group)
            doc_url: 'ee/api/group_boards.html'
          - doc_title: Issues
            doc_url: 'ee/api/issues.html'
          - doc_title: Issues (epic)
            doc_url: 'ee/api/epic_issues.html'
          - doc_title: Issues statistics
            doc_url: 'ee/api/issues_statistics.html'
          - doc_title: Iterations (project)
            doc_url: 'ee/api/iterations.html'
          - doc_title: Iterations (group)
            doc_url: 'ee/api/group_iterations.html'
          - doc_title: Jobs
            doc_url: 'ee/api/jobs.html'
          - doc_title: Job artifacts
            doc_url: 'ee/api/job_artifacts.html'
          - doc_title: Keys
            doc_url: 'ee/api/keys.html'
          - doc_title: Labels (project)
            doc_url: 'ee/api/labels.html'
          - doc_title: Labels (group)
            doc_url: 'ee/api/group_labels.html'
          - doc_title: License
            doc_url: 'ee/api/license.html'
          - doc_title: Licenses (templates)
            doc_url: 'ee/api/templates/licenses.html'
          - doc_title: Linked epics
            doc_url: 'ee/api/linked_epics.html'
          - doc_title: Links (issue)
            doc_url: 'ee/api/issue_links.html'
          - doc_title: Links (epic)
            doc_url: 'ee/api/epic_links.html'
          - doc_title: Managed licenses
            doc_url: 'ee/api/managed_licenses.html'
          - doc_title: Markdown
            doc_url: 'ee/api/markdown.html'
          - doc_title: Maven
            doc_url: 'ee/api/packages/maven.html'
          - doc_title: Members
            doc_url: 'ee/api/members.html'
          - doc_title: Merge request approvals
            doc_url: 'ee/api/merge_request_approvals.html'
          - doc_title: Merge request context commits
            doc_url: 'ee/api/merge_request_context_commits.html'
          - doc_title: Merge requests
            doc_url: 'ee/api/merge_requests.html'
          - doc_title: Merge trains
            doc_url: 'ee/api/merge_trains.html'
          - doc_title: Metadata
            doc_url: 'ee/api/metadata.html'
          - doc_title: Migrations (bulk imports)
            doc_url: 'ee/api/bulk_imports.html'
          - doc_title: Milestones (project)
            doc_url: 'ee/api/milestones.html'
          - doc_title: Milestones (group)
            doc_url: 'ee/api/group_milestones.html'
          - doc_title: Namespaces
            doc_url: 'ee/api/namespaces.html'
          - doc_title: Notes (comments)
            doc_url: 'ee/api/notes.html'
          - doc_title: Notification settings
            doc_url: 'ee/api/notification_settings.html'
          - doc_title: npm
            doc_url: 'ee/api/packages/npm.html'
          - doc_title: NuGet
            doc_url: 'ee/api/packages/nuget.html'
          - doc_title: Packages
            doc_url: 'ee/api/packages.html'
          - doc_title: Pages domains
            doc_url: 'ee/api/pages_domains.html'
          - doc_title: Personal access tokens
            doc_url: 'ee/api/personal_access_tokens.html'
          - doc_title: Pipelines schedules
            doc_url: 'ee/api/pipeline_schedules.html'
          - doc_title: Pipeline triggers
            doc_url: 'ee/api/pipeline_triggers.html'
          - doc_title: Pipelines
            doc_url: 'ee/api/pipelines.html'
          - doc_title: Plan limits
            doc_url: 'ee/api/plan_limits.html'
          - doc_title: Project access tokens
            doc_url: 'ee/api/project_access_tokens.html'
          - doc_title: Project aliases
            doc_url: 'ee/api/project_aliases.html'
          - doc_title: Project import/export
            doc_url: 'ee/api/project_import_export.html'
          - doc_title: Project relations export
            doc_url: 'ee/api/project_relations_export.html'
          - doc_title: Project remote mirrors
            doc_url: 'ee/api/remote_mirrors.html'
          - doc_title: Project repository storage moves
            doc_url: 'ee/api/project_repository_storage_moves.html'
          - doc_title: Project statistics
            doc_url: 'ee/api/project_statistics.html'
          - doc_title: Project templates
            doc_url: 'ee/api/project_templates.html'
          - doc_title: Project vulnerabilities
            doc_url: 'ee/api/project_vulnerabilities.html'
          - doc_title: Projects
            doc_url: 'ee/api/projects.html'
          - doc_title: Protected branches
            doc_url: 'ee/api/protected_branches.html'
          - doc_title: Project-level protected environments
            doc_url: 'ee/api/protected_environments.html'
          - doc_title: Group-level protected environments
            doc_url: 'ee/api/group_protected_environments.html'
          - doc_title: Protected tags
            doc_url: 'ee/api/protected_tags.html'
          - doc_title: PyPI
            doc_url: 'ee/api/packages/pypi.html'
          - doc_title: Releases
            doc_url: 'ee/api/releases/'
            docs:
              - doc_title: Group releases
                doc_url: 'ee/api/group_releases.html'
          - doc_title: Release links
            doc_url: 'ee/api/releases/links.html'
          - doc_title: Repositories
            doc_url: 'ee/api/repositories.html'
          - doc_title: Repository files
            doc_url: 'ee/api/repository_files.html'
          - doc_title: Repository submodules
            doc_url: 'ee/api/repository_submodules.html'
          - doc_title: Resource group
            doc_url: 'ee/api/resource_groups.html'
          - doc_title: Resource iteration events
            doc_url: 'ee/api/resource_iteration_events.html'
          - doc_title: Resource label events
            doc_url: 'ee/api/resource_label_events.html'
          - doc_title: Resource milestone events
            doc_url: 'ee/api/resource_milestone_events.html'
          - doc_title: Resource state events
            doc_url: 'ee/api/resource_state_events.html'
          - doc_title: Resource weight events
            doc_url: 'ee/api/resource_weight_events.html'
          - doc_title: Ruby gems
            doc_url: 'ee/api/packages/rubygems.html'
          - doc_title: Runners
            doc_url: 'ee/api/runners.html'
          - doc_title: SCIM
            doc_url: 'ee/api/scim.html'
          - doc_title: Search
            doc_url: 'ee/api/search.html'
          - doc_title: Settings (application)
            doc_url: 'ee/api/settings.html'
          - doc_title: Sidekiq metrics
            doc_url: 'ee/api/sidekiq_metrics.html'
          - doc_title: Sidekiq queues
            doc_url: 'ee/api/admin_sidekiq_queues.html'
          - doc_title: Snippet repository storage moves
            doc_url: 'ee/api/snippet_repository_storage_moves.html'
          - doc_title: Snippets
            doc_url: 'ee/api/snippets.html'
          - doc_title: Snippets (project)
            doc_url: 'ee/api/project_snippets.html'
          - doc_title: Statistics (application)
            doc_url: 'ee/api/statistics.html'
          - doc_title: Suggestions
            doc_url: 'ee/api/suggestions.html'
          - doc_title: System hooks
            doc_url: 'ee/api/system_hooks.html'
          - doc_title: Tags
            doc_url: 'ee/api/tags.html'
          - doc_title: To-Do lists
            doc_url: 'ee/api/todos.html'
          - doc_title: Topics
            doc_url: 'ee/api/topics.html'
          - doc_title: Service Data
            doc_url: 'ee/api/usage_data.html'
          - doc_title: Users
            doc_url: 'ee/api/users.html'
          - doc_title: User-starred metrics dashboards
            doc_url: 'ee/api/metrics_user_starred_dashboards.html'
          - doc_title: Variables (project)
            doc_url: 'ee/api/project_level_variables.html'
          - doc_title: Variables (group)
            doc_url: 'ee/api/group_level_variables.html'
          - doc_title: Version
            doc_url: 'ee/api/version.html'
          - doc_title: Visual Review discussions
            doc_url: 'ee/api/visual_review_discussions.html'
          - doc_title: Vulnerabilities
            doc_url: 'ee/api/vulnerabilities.html'
          - doc_title: Vulnerability export
            doc_url: 'ee/api/vulnerability_exports.html'
          - doc_title: Vulnerability Findings
            doc_url: 'ee/api/vulnerability_findings.html'
          - doc_title: Wikis (group)
            doc_url: 'ee/api/group_wikis.html'
          - doc_title: Wikis (project)
            doc_url: 'ee/api/wikis.html'
      - category_title: OpenAPI
        category_url: 'ee/api/openapi/openapi_interactive.html'
      - category_title: GraphQL
        category_url: 'ee/api/graphql/'
        docs:
          - doc_title: Get started using GraphQL
            doc_url: 'ee/api/graphql/getting_started.html'
          - doc_title: GraphQL reference
            doc_url: 'ee/api/graphql/reference/'
          - doc_title: Create audit report (example)
            doc_url: 'ee/api/graphql/audit_report.html'
          - doc_title: Identify issue boards (example)
            doc_url: 'ee/api/graphql/sample_issue_boards.html'
          - doc_title: Query users (example)
            doc_url: 'ee/api/graphql/users_example.html'
          - doc_title: Use custom emojis (example)
            doc_url: 'ee/api/graphql/custom_emoji.html'
          - doc_title: Removed items
            doc_url: 'ee/api/graphql/removed_items.html'
      - category_title: Lint .gitlab-ci.yml
        category_url: 'ee/api/lint.html'
      - category_title: GitLab as an OAuth2 provider
        category_url: 'ee/api/oauth2.html'
  # End of documentation from https://gitlab.com/gitlab-org/gitlab

  # Development documentation from:
  #
  # - https://gitlab.com/gitlab-org/gitlab
  # - https://gitlab.com/gitlab-org/omnibus-gitlab
  # - https://gitlab.com/gitlab-org/gitlab-runner
  # - https://gitlab.com/gitlab-org/charts/gitlab
  #
  # GitLab
  - section_title: Contribute to GitLab development
    section_url: 'ee/development/'
    section_categories:
      # GitLab app development documentation
      - category_title: Contribute to GitLab
        category_url: 'ee/development/contributing/'
        docs:
          - doc_title: Architecture
            doc_url: 'ee/development/architecture.html'
          - doc_title: Documentation
            doc_url: 'ee/development/documentation/'
            docs:
              - doc_title: Style guide
                doc_url: 'ee/development/documentation/styleguide/'
              - doc_title: Creating a GraphQL example page
                doc_url: 'ee/development/documentation/graphql_styleguide.html'
              - doc_title: RESTful API style guide
                doc_url: 'ee/development/documentation/restful_api_styleguide.html'
              - doc_title: Recommended word list
                doc_url: 'ee/development/documentation/styleguide/word_list.html'
              - doc_title: Topic types
                doc_url: 'ee/development/documentation/structure.html'
              - doc_title: Process
                doc_url: 'ee/development/documentation/workflow.html'
              - doc_title: Testing
                doc_url: 'ee/development/documentation/testing.html'
              - doc_title: Site architecture
                doc_url: 'ee/development/documentation/site_architecture/'
              - doc_title: Folder structure
                doc_url: 'ee/development/documentation/site_architecture/folder_structure.html'
              - doc_title: Global navigation
                doc_url: 'ee/development/documentation/site_architecture/global_nav.html'
              - doc_title: Documenting product versions
                doc_url: 'ee/development/documentation/versions.html'
              - doc_title: Deployment process
                doc_url: 'ee/development/documentation/site_architecture/deployment_process.html'
              - doc_title: Documentation review apps
                doc_url: 'ee/development/documentation/review_apps.html'
              - doc_title: Redirects
                doc_url: 'ee/development/documentation/redirects.html'
          - doc_title: Development Rake tasks
            doc_url: 'ee/development/rake_tasks.html'
            docs:
              - doc_title: Mass insert Rails models
                doc_url: 'ee/development/mass_insert.html'
          - doc_title: Development processes
            doc_url: 'ee/development/development_processes.html'
            docs:
              - doc_title: Changelog entries
                doc_url: 'ee/development/changelog.html'
              - doc_title: ChatOps on GitLab.com
                doc_url: 'ee/development/chatops_on_gitlabcom.html'
              - doc_title: Code review guidelines
                doc_url: 'ee/development/code_review.html'
              - doc_title: Community roles
                doc_url: 'ee/development/contributing/community_roles.html'
              - doc_title: Danger bot
                doc_url: 'ee/development/dangerbot.html'
              - doc_title: Deprecation guidelines
                doc_url: 'ee/development/deprecation_guidelines/'
              - doc_title: FIPS compliance
                doc_url: 'ee/development/fips_compliance.html'
              - doc_title: Experiments
                doc_url: 'ee/development/experiment_guide/'
                docs:
                  - doc_title: Implementing experiments
                    doc_url: 'ee/development/experiment_guide/implementing_experiments.html'
                  - doc_title: Testing experiments
                    doc_url: 'ee/development/experiment_guide/testing_experiments.html'
                  - doc_title: Experiment code reviews
                    doc_url: 'ee/development/experiment_guide/experiment_code_reviews.html'
                  - doc_title: Experiment rollouts
                    doc_url: 'ee/development/experiment_guide/experiment_rollout.html'
              - doc_title: Feature flags for GitLab development
                doc_url: 'ee/development/feature_flags/'
                docs:
                  - doc_title: Controlling feature flags
                    doc_url: 'ee/development/feature_flags/controls.html'
                  - doc_title: Documenting feature flags
                    doc_url: 'ee/development/documentation/feature_flags.html'
                  - doc_title: Feature flags API
                    doc_url: 'ee/api/features.html'
              - doc_title: Framework - DeclarativePolicy
                doc_url: 'ee/development/policies.html'
              - doc_title: Issues workflow
                doc_url: 'ee/development/contributing/issue_workflow.html'
              - doc_title: Merge request concepts
                doc_url: 'ee/development/merge_request_concepts/'
              - doc_title: Merge request workflow
                doc_url: 'ee/development/contributing/merge_request_workflow.html'
              - doc_title: Secure partner onboarding process
                doc_url: 'ee/development/integrations/secure_partner_integration.html'
              - doc_title: Testing standards and styles
                doc_url: 'ee/development/testing_guide/'
                docs:
                  - doc_title: Flaky tests
                    doc_url: 'ee/development/testing_guide/flaky_tests.html'
                  - doc_title: Frontend testing standards and style guidelines
                    doc_url: 'ee/development/testing_guide/frontend_testing.html'
                  - doc_title: Review apps
                    doc_url: 'ee/development/testing_guide/review_apps.html'
                  - doc_title: Smoke tests
                    doc_url: 'ee/development/testing_guide/smoke.html'
                  - doc_title: Testing best practices
                    doc_url: 'ee/development/testing_guide/best_practices.html'
                  - doc_title: Testing levels
                    doc_url: 'ee/development/testing_guide/testing_levels.html'
                  - doc_title: Testing Rails migrations
                    doc_url: 'ee/development/testing_guide/testing_migrations_guide.html'
                  - doc_title: Testing Rake tasks
                    doc_url: 'ee/development/testing_guide/testing_rake_tasks.html'
              - doc_title: Testing (contract)
                doc_url: 'ee/development/testing_guide/contract/'
                docs:
                  - doc_title: Writing consumer tests
                    doc_url: 'ee/development/testing_guide/contract/consumer_tests.html'
                  - doc_title: Writing provider tests
                    doc_url: 'ee/development/testing_guide/contract/provider_tests.html'
              - doc_title: Testing (end to end)
                doc_url: 'ee/development/testing_guide/end_to_end/'
                docs:
                  - doc_title: Beginner's guide to writing end-to-end tests
                    doc_url: 'ee/development/testing_guide/end_to_end/beginners_guide.html'
                  - doc_title: Best practices when writing end-to-end tests
                    doc_url: 'ee/development/testing_guide/end_to_end/best_practices.html'
                  - doc_title: Dynamic element validation
                    doc_url: 'ee/development/testing_guide/end_to_end/dynamic_element_validation.html'
                  - doc_title: Flows in GitLab QA
                    doc_url: 'ee/development/testing_guide/end_to_end/flows.html'
                  - doc_title: Page objects in GitLab QA
                    doc_url: 'ee/development/testing_guide/end_to_end/page_objects.html'
                  - doc_title: Resource class in GitLab QA
                    doc_url: 'ee/development/testing_guide/end_to_end/resources.html'
                  - doc_title: Style guide for writing end-to-end tests
                    doc_url: 'ee/development/testing_guide/end_to_end/style_guide.html'
                  - doc_title: Testing with feature flags
                    doc_url: 'ee/development/testing_guide/end_to_end/feature_flags.html'
                  - doc_title: Troubleshooting
                    doc_url: 'ee/development/testing_guide/end_to_end/troubleshooting.html'
              - doc_title: Translate GitLab
                doc_url: 'ee/development/i18n/'
                docs:
                  - doc_title: Externalization
                    doc_url: 'ee/development/i18n/externalization.html'
                  - doc_title: Translation
                    doc_url: 'ee/development/i18n/translation.html'
                  - doc_title: Proofreading
                    doc_url: 'ee/development/i18n/proofreader.html'
                  - doc_title: Merging
                    doc_url: 'ee/development/i18n/merging_translations.html'
          - doc_title: Development style guides
            doc_url: 'ee/development/contributing/style_guides.html'
            docs:
              - doc_title: Frontend style guides
                doc_url: 'ee/development/fe_guide/style/'
              - doc_title: API style guide
                doc_url: 'ee/development/api_styleguide.html'
              - doc_title: Go standards and style guidelines
                doc_url: 'ee/development/go_guide/'
              - doc_title: GraphQL API style guide
                doc_url: 'ee/development/api_graphql_styleguide.html'
              - doc_title: Guidelines for shell commands
                doc_url: 'ee/development/shell_commands.html'
              - doc_title: HTML style guide
                doc_url: 'ee/development/fe_guide/style/html.html'
              - doc_title: JavaScript style guide
                doc_url: 'ee/development/fe_guide/style/javascript.html'
              - doc_title: Newlines style guide
                doc_url: 'ee/development/newlines_styleguide.html'
              - doc_title: Python development guidelines
                doc_url: 'ee/development/python_guide/'
              - doc_title: Ruby style guide
                doc_url: 'ee/development/backend/ruby_style_guide.html'
              - doc_title: SCSS style guide
                doc_url: 'ee/development/fe_guide/style/scss.html'
              - doc_title: Shell scripting standards and style guidelines
                doc_url: 'ee/development/shell_scripting_guide/'
              - doc_title: Vue style guide
                doc_url: 'ee/development/fe_guide/style/vue.html'
          - doc_title: Feature development
            doc_url: 'ee/development/feature_development.html'
            docs:
              - doc_title: Approval rules development
                doc_url: 'ee/development/approval_rules.html'
              - doc_title: Audit Event development
                doc_url: 'ee/development/audit_event_guide/'
              - doc_title: Auto DevOps development
                doc_url: 'ee/development/auto_devops.html'
              - doc_title: Built-in project templates
                doc_url: 'ee/development/project_templates.html'
              - doc_title: CI/CD development
                doc_url: 'ee/development/cicd/'
                docs:
                  - doc_title: Documenting keywords
                    doc_url: 'ee/development/cicd/cicd_reference_documentation_guide.html'
                  - doc_title: Contribute to the CI/CD schema
                    doc_url: 'ee/development/cicd/schema.html'
                  - doc_title: CI/CD template development
                    doc_url: 'ee/development/cicd/templates.html'
                  - doc_title: Pipeline Wizard
                    doc_url: 'ee/development/cicd/pipeline_wizard.html'
              - doc_title: Code intelligence
                doc_url: 'ee/development/code_intelligence/'
              - doc_title: CodeSandbox development environment
                doc_url: 'ee/development/integrations/codesandbox.html'
              - doc_title: Create - Source Code backend
                doc_url: 'ee/development/backend/create_source_code_be/'
                docs:
                  - doc_title: Gitaly touch points
                    doc_url: 'ee/development/backend/create_source_code_be/gitaly_touch_points.html'
                  - doc_title: Source Code REST endpoints
                    doc_url: 'ee/development/backend/create_source_code_be/rest_endpoints.html'
              - doc_title: Database development
                doc_url: 'ee/development/database/'
                docs:
                  - doc_title: Avoiding downtime in migrations
                    doc_url: 'ee/development/database/avoiding_downtime_in_migrations.html'
                  - doc_title: Background migrations
                    doc_url: 'ee/development/database/background_migrations.html'
                  - doc_title: Case study - filtering by label
                    doc_url: 'ee/development/database/filtering_by_label.html'
                  - doc_title: Case study - namespaces storage statistics
                    doc_url: 'ee/development/database/namespaces_storage_statistics.html'
                  - doc_title: CI mirrored tables
                    doc_url: 'ee/development/database/ci_mirrored_tables.html'
                  - doc_title: Database Lab and Postgres.ai
                    doc_url: 'ee/development/database/database_lab.html'
                  - doc_title: Database review guidelines
                    doc_url: 'ee/development/database_review.html'
                  - doc_title: Database check-migrations job
                    doc_url: 'ee/development/database/dbcheck-migrations-job.html'
                  - doc_title: Delete existing migrations
                    doc_url: 'ee/development/database/deleting_migrations.html'
                  - doc_title: Layout and access patterns
                    doc_url: 'ee/development/database/layout_and_access_patterns.html'
                  - doc_title: Migrations style guide
                    doc_url: 'ee/development/migration_style_guide.html'
                  - doc_title: Pagination guidelines
                    doc_url: 'ee/development/database/pagination_guidelines.html'
                    docs:
                      - doc_title: Pagination performance guidelines
                        doc_url: 'ee/development/database/pagination_performance_guidelines.html'
                      - doc_title: Keyset pagination
                        doc_url: 'ee/development/database/keyset_pagination.html'
                  - doc_title: Post-deployment migrations
                    doc_url: 'ee/development/database/post_deployment_migrations.html'
                  - doc_title: Query comments with Marginalia
                    doc_url: 'ee/development/database/database_query_comments.html'
                  - doc_title: Query Recorder
                    doc_url: 'ee/development/database/query_recorder.html'
                  - doc_title: SQL guidelines
                    doc_url: 'ee/development/sql.html'
                  - doc_title: Swapping tables
                    doc_url: 'ee/development/database/swapping_tables.html'
                  - doc_title: Table partitioning
                    doc_url: 'ee/development/database/table_partitioning.html'
                  - doc_title: Troubleshooting and Debugging Database
                    doc_url: 'ee/development/database/database_debugging.html'
                  - doc_title: Understanding EXPLAIN plans
                    doc_url: 'ee/development/database/understanding_explain_plans.html'
                  - doc_title: Multiple databases
                    doc_url: 'ee/development/database/multiple_databases.html'
                    docs:
                      - doc_title: Loose Foreign Keys
                        doc_url: 'ee/development/database/loose_foreign_keys.html'
              - doc_title: Design and UI
                doc_url: 'ee/development/contributing/design.html'
              - doc_title: Developer guide to logging
                doc_url: 'ee/development/logging.html'
              - doc_title: Distributed tracing
                doc_url: 'ee/development/distributed_tracing.html'
              - doc_title: Frontend development
                doc_url: 'ee/development/fe_guide/'
                docs:
                  - doc_title: Accessibility
                    doc_url: 'ee/development/fe_guide/accessibility.html'
                  - doc_title: Architecture
                    doc_url: 'ee/development/fe_guide/architecture.html'
                  - doc_title: Axios
                    doc_url: 'ee/development/fe_guide/axios.html'
                  - doc_title: Content Editor
                    doc_url: 'ee/development/fe_guide/content_editor.html'
                  - doc_title: Dark mode
                    doc_url: 'ee/development/fe_guide/dark_mode.html'
                  - doc_title: Dependencies
                    doc_url: 'ee/development/fe_guide/dependencies.html'
                  - doc_title: Design anti-patterns
                    doc_url: 'ee/development/fe_guide/design_anti_patterns.html'
                  - doc_title: Design patterns
                    doc_url: 'ee/development/fe_guide/design_patterns.html'
                  - doc_title: Development process
                    doc_url: 'ee/development/fe_guide/development_process.html'
                  - doc_title: Event tracking
                    doc_url: 'https://about.gitlab.com/handbook/product/product-intelligence-guide/'
                    external_url: true
                  - doc_title: Emojis
                    doc_url: 'ee/development/fe_guide/emojis.html'
                  - doc_title: Frontend FAQ
                    doc_url: 'ee/development/fe_guide/frontend_faq.html'
                  - doc_title: GraphQL
                    doc_url: 'ee/development/fe_guide/graphql.html'
                  - doc_title: HAML
                    doc_url: 'ee/development/fe_guide/haml.html'
                  - doc_title: Icons and SVG illustrations
                    doc_url: 'ee/development/fe_guide/icons.html'
                  - doc_title: Keyboard shortcuts
                    doc_url: 'ee/development/fe_guide/keyboard_shortcuts.html'
                  - doc_title: Logging
                    doc_url: 'ee/development/fe_guide/logging.html'
                  - doc_title: Merge request widget extensions
                    doc_url: 'ee/development/fe_guide/merge_request_widget_extensions.html'
                  - doc_title: Performance
                    doc_url: 'ee/development/fe_guide/performance.html'
                  - doc_title: Principles
                    doc_url: 'ee/development/fe_guide/principles.html'
                  - doc_title: Registry architecture
                    doc_url: 'ee/development/fe_guide/registry_architecture.html'
                  - doc_title: Security
                    doc_url: 'ee/development/fe_guide/security.html'
                  - doc_title: Source editor
                    doc_url: 'ee/development/fe_guide/source_editor.html'
                  - doc_title: Tooling
                    doc_url: 'ee/development/fe_guide/tooling.html'
                  - doc_title: Troubleshooting
                    doc_url: 'ee/development/fe_guide/troubleshooting.html'
                  - doc_title: ViewComponent
                    doc_url: 'ee/development/fe_guide/view_component.html'
                  - doc_title: Vuex
                    doc_url: 'ee/development/fe_guide/vuex.html'
                  - doc_title: Vue
                    doc_url: 'ee/development/fe_guide/vue.html'
                  - doc_title: Vue 3 migration
                    doc_url: 'ee/development/fe_guide/vue3_migration.html'
                  - doc_title: Widgets
                    doc_url: 'ee/development/fe_guide/widgets.html'
              - doc_title: Geo development
                doc_url: 'ee/development/geo.html'
                docs:
                  - doc_title: Geo framework
                    doc_url: 'ee/development/geo/framework.html'
                  - doc_title: Geo proxying
                    doc_url: 'ee/development/geo/proxying.html'
              - doc_title: Git LFS
                doc_url: 'ee/development/lfs.html'
              - doc_title: Gitaly development
                doc_url: 'ee/development/gitaly.html'
              - doc_title: GitLab Flavored Markdown (GLFM) developer documentation
                doc_url: 'ee/development/gitlab_flavored_markdown/'
                docs:
                  - doc_title: GitLab Flavored Markdown (GLFM) specification guide
                    doc_url: 'ee/development/gitlab_flavored_markdown/specification_guide/'
              - doc_title: GitLab group migration
                doc_url: 'ee/development/bulk_import.html'
              - doc_title: GraphQL development
                doc_url: 'ee/development/graphql_guide/'
                docs:
                  - doc_title: GraphQL authorization
                    doc_url: 'ee/development/graphql_guide/authorization.html'
                  - doc_title: GraphQL BatchLoader
                    doc_url: 'ee/development/graphql_guide/batchloader.html'
                  - doc_title: GraphQL pagination
                    doc_url: 'ee/development/graphql_guide/pagination.html'
                  - doc_title: GraphQL Pro
                    doc_url: 'ee/development/graphql_guide/graphql_pro.html'
              - doc_title: Import/Export
                doc_url: 'ee/development/import_export.html'
              - doc_title: Integrations
                doc_url: 'ee/development/integrations/'
              - doc_title: Internal API
                doc_url: 'ee/development/internal_api/'
                docs:
                  - doc_title: Internal allowed API
                    doc_url: 'ee/development/internal_api/internal_api_allowed.html'
              - doc_title: Internal users
                doc_url: 'ee/development/internal_users.html'
              - doc_title: Issuable-like Rails models utilities
                doc_url: 'ee/development/issuable-like-models.html'
              - doc_title: Issue types
                doc_url: 'ee/development/issue_types.html'
              - doc_title: Jenkins in local environments
                doc_url: 'ee/development/integrations/jenkins.html'
              - doc_title: Jira development environment
                doc_url: 'ee/development/integrations/jira_connect.html'
              - doc_title: Kubernetes integration
                doc_url: 'ee/development/kubernetes.html'
              - doc_title: Observability for stage groups
                doc_url: 'ee/development/stage_group_observability/'
                docs:
                  - doc_title: Dashboards
                    doc_url: 'ee/development/stage_group_observability/dashboards/'
                  - doc_title: Stage group dashboard
                    doc_url: 'ee/development/stage_group_observability/dashboards/stage_group_dashboard.html'
                  - doc_title: Error budget detail
                    doc_url: 'ee/development/stage_group_observability/dashboards/error_budget_detail.html'
              - doc_title: Package development
                doc_url: 'ee/development/packages/'
                docs:
                  - doc_title: Package settings
                    doc_url: 'ee/development/packages/settings.html'
                  - doc_title: Package structure
                    doc_url: 'ee/development/packages/structure.html'
                  - doc_title: Support new formats
                    doc_url: 'ee/development/packages/new_format_development.html'
                  - doc_title: Debian repository
                    doc_url: 'ee/development/packages/debian_repository.html'
              - doc_title: Permissions
                doc_url: 'ee/development/permissions.html'
              - doc_title: Product Qualified Lead (PQL) guide
                doc_url: 'ee/development/product_qualified_lead_guide/'
              - doc_title: Real-time features
                doc_url: 'ee/development/real_time.html'
              - doc_title: Service Ping guide
                doc_url: 'ee/development/service_ping/'
                docs:
                  - doc_title: Metrics lifecycle
                    doc_url: 'ee/development/service_ping/metrics_lifecycle.html'
                  - doc_title: Implement Service Ping
                    doc_url: 'ee/development/service_ping/implement.html'
                  - doc_title: Metrics instrumentation
                    doc_url: 'ee/development/service_ping/metrics_instrumentation.html'
                  - doc_title: Metrics dictionary guide
                    doc_url: 'ee/development/service_ping/metrics_dictionary.html'
                  - doc_title: Metrics dictionary
                    doc_url: 'https://metrics.gitlab.com'
                    external_url: true
                  - doc_title: Metrics Performance Indicator
                    doc_url: 'ee/development/service_ping/performance_indicator_metrics.html'
                  - doc_title: Review guidelines
                    doc_url: 'ee/development/service_ping/review_guidelines.html'
                  - doc_title: Troubleshooting
                    doc_url: 'ee/development/service_ping/troubleshooting.html'
              - doc_title: Sidekiq development
                doc_url: 'ee/development/sidekiq/'
                docs:
                  - doc_title: Compatibility across updates
                    doc_url: 'ee/development/sidekiq/compatibility_across_updates.html'
                  - doc_title: Job idempotency and job deduplication
                    doc_url: 'ee/development/sidekiq/idempotent_jobs.html'
                  - doc_title: Limited capacity worker
                    doc_url: 'ee/development/sidekiq/limited_capacity_worker.html'
                  - doc_title: Logging
                    doc_url: 'ee/development/sidekiq/logging.html'
                  - doc_title: Worker attributes
                    doc_url: 'ee/development/sidekiq/worker_attributes.html'
              - doc_title: Snowplow
                doc_url: 'ee/development/snowplow/'
                docs:
                  - doc_title: Implement Snowplow
                    doc_url: 'ee/development/snowplow/implementation.html'
                  - doc_title: Snowplow Infrastructure
                    doc_url: 'ee/development/snowplow/infrastructure.html'
                  - doc_title: Schemas
                    doc_url: 'ee/development/snowplow/schemas.html'
                  - doc_title: Event dictionary guide
                    doc_url: 'ee/development/snowplow/event_dictionary_guide.html'
                  - doc_title: Event dictionary
                    doc_url: 'https://metrics.gitlab.com/snowplow/'
                    external_url: true
                  - doc_title: Review guidelines
                    doc_url: 'ee/development/snowplow/review_guidelines.html'
                  - doc_title: Troubleshooting
                    doc_url: 'ee/development/snowplow/troubleshooting.html'
              - doc_title: Spam protection and CAPTCHA
                doc_url: 'ee/development/spam_protection_and_captcha/'
                docs:
                  - doc_title: Model and services
                    doc_url: 'ee/development/spam_protection_and_captcha/model_and_services.html'
                  - doc_title: REST API spam protection
                    doc_url: 'ee/development/spam_protection_and_captcha/rest_api.html'
                  - doc_title: GraphQL API spam protection
                    doc_url: 'ee/development/spam_protection_and_captcha/graphql_api.html'
                  - doc_title: Web UI spam protection
                    doc_url: 'ee/development/spam_protection_and_captcha/web_ui.html'
                  - doc_title: Exploratory testing
                    doc_url: 'ee/development/spam_protection_and_captcha/exploratory_testing.html'
              - doc_title: Uploads
                doc_url: 'ee/development/uploads/'
                docs:
                  - doc_title: Adding new uploads
                    doc_url: 'ee/development/uploads/working_with_uploads.html'
              - doc_title: Value Stream Analytics
                doc_url: 'ee/development/value_stream_analytics.html'
              - doc_title: Verify stage development
                doc_url: 'ee/development/contributing/verify/'
              - doc_title: Wikis
                doc_url: 'ee/development/wikis.html'
              - doc_title: Work items and work item types
                doc_url: 'ee/development/work_items.html'
              - doc_title: Workhorse
                doc_url: 'ee/development/workhorse/'
                docs:
                  - doc_title: Adding new features to Workhorse
                    doc_url: 'ee/development/workhorse/new_features.html'
                  - doc_title: Configuration
                    doc_url: 'ee/development/workhorse/configuration.html'
                  - doc_title: Features that rely on Workhorse
                    doc_url: 'ee/development/workhorse/gitlab_features.html'
                  - doc_title: Websocket channel support
                    doc_url: 'ee/development/workhorse/channel.html'
              - doc_title: Prometheus metrics
                doc_url: 'ee/development/prometheus_metrics.html'
              - doc_title: Workspace
                doc_url: 'ee/development/workspace/'
          - doc_title: GitLab Development Kit
            doc_url: 'https://gitlab.com/gitlab-org/gitlab-development-kit/-/blob/main/README.md'
            external_url: true
          - doc_title: GitLab Design System
            doc_url: 'https://design.gitlab.com'
            external_url: true
          - doc_title: GitLab project pipelines
            doc_url: 'ee/development/pipelines.html'
      # End of GitLab app development documentation

      # Omnibus GitLab development documentation
      - category_title: Contribute to Omnibus GitLab
        category_url: 'omnibus/development/'
        docs:
          - doc_title: Get started
            doc_url: 'omnibus/development/contribute-to-omnibus-gitlab.html'
          - doc_title: Build locally
            doc_url: 'omnibus/build/'
            docs:
              - doc_title: Build Omnibus GitLab package
                doc_url: 'omnibus/build/build_package.html'
              - doc_title: Build all-in-one Docker image
                doc_url: 'omnibus/build/build_docker_image.html'
              - doc_title: Information for GitLab team members
                doc_url: 'omnibus/build/team_member_docs.html'
          - doc_title: Set up a development environment
            doc_url: 'omnibus/development/setup.html'
          - doc_title: CI variables
            doc_url: 'omnibus/development/ci-variables.html'
          - doc_title: Change package behavior
            doc_url: 'omnibus/development/change-package-behavior.html'
          - doc_title: Change YAML config options
            doc_url: 'omnibus/settings/gitlab.yml.html'
          - doc_title: Add deprecation messages
            doc_url: 'omnibus/development/adding-deprecation-messages.html'
          - doc_title: Add new gitlab-ctl commands
            doc_url: 'omnibus/development/gitlab-ctl-commands.html'
          - doc_title: Add new services
            doc_url: 'omnibus/development/new-services.html'
          - doc_title: Add new software definitions
            doc_url: 'omnibus/development/new-software-definition.html'
          - doc_title: Create patches
            doc_url: 'omnibus/development/creating-patches.html'
          - doc_title: Add or remove configuration options
            doc_url: 'omnibus/development/add-remove-configuration-options.html'
          - doc_title: Manage PostgreSQL versions
            doc_url: 'omnibus/development/managing-postgresql-versions.html'
          - doc_title: Omnibus mirror
            doc_url: 'omnibus/development/omnibus-mirror.html'
          - doc_title: Version format for the packages and Docker images
            doc_url: 'omnibus/development/package_version_format.html'
          - doc_title: Pipelines
            doc_url: 'omnibus/development/pipelines.html'
          - doc_title: Work with public_attributes.json
            doc_url: 'omnibus/development/public-attributes.html'
          - doc_title: Upgrade Chef
            doc_url: 'omnibus/development/upgrading-chef.html'
          - doc_title: Handle vulnerabilities
            doc_url: 'omnibus/development/vulnerabilities.html'
          - doc_title: Handle broken master pipelines
            doc_url: 'omnibus/development/broken_master.html'
          - doc_title: Deprecate and remove support for an OS
            doc_url: 'omnibus/development/deprecating-and-removing-support-for-an-os.html'
      # End Omnibus GitLab development documentation

      # GitLab Pages development documentation
      - category_title: Contribute to GitLab Pages
        category_url: 'ee/development/pages/'
      # End GitLab Pages development documentation

      # GitLab Runner development documentation
      - category_title: Contribute to GitLab Runner
        category_url: 'runner/development/'
        docs:
          - doc_title: Review GitLab Runner
            doc_url: 'runner/development/reviewing-gitlab-runner.html'
          - doc_title: Add new Windows version support for Docker executor
            doc_url: 'runner/development/add-windows-version.html'
      # End GitLab Runner development documentation

      # GitLab Helm Charts development documentation
      - category_title: Contribute to GitLab Helm Charts
        category_url: 'charts/development/'
        docs:
          - doc_title: Architecture of Cloud native GitLab Helm charts
            doc_url: 'charts/architecture/'
            docs:
              - doc_title: Backup and Restore
                doc_url: 'charts/architecture/backup-restore.html'
              - doc_title: Goals
                doc_url: 'charts/architecture/goals.html'
              - doc_title: Architecture
                doc_url: 'charts/architecture/architecture.html'
              - doc_title: Design Decisions
                doc_url: 'charts/architecture/decisions.html'
              - doc_title: Resource Usage
                doc_url: 'charts/architecture/resource-usage.html'
          - doc_title: Environment setup
            doc_url: 'charts/development/environment_setup.html'
          - doc_title: Style guide
            doc_url: 'charts/development/style_guide.html'
          - doc_title: Versioning and release
            doc_url: 'charts/development/release.html'
      # End GitLab Helm Charts development documentation

  # End of development documentation