-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathen.json
More file actions
1902 lines (1902 loc) · 94.1 KB
/
Copy pathen.json
File metadata and controls
1902 lines (1902 loc) · 94.1 KB
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
[
{
"from": "https://www.azion.com/en/documentation/products/core-concepts/",
"moved": "https://www.azion.com/en/documentation/products/azion-platform-overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/get-started/",
"moved": "https://www.azion.com/en/documentation/products/azion-platform-overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/changelog/",
"moved": "https://www.azion.com/en/documentation/products/release-notes/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/fingerprint/",
"moved": "https://www.azion.com/en/documentation/products/guides/javascript-tag-js-tag/"
},
{
"from": "https://www.azion.com/en/documentation/products/marketplace/bot-manager/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/bot-manager/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-manager-starter-kit/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-lite-starter-kit/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-manager-integration-kit/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-lite-integration-kit/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-manager-and-tor-block-starter-kit/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-lite-and-tor-block-starter-kit/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-manager/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-lite/"
},
{
"from": "https://www.azion.com/en/documentation/architectures/deploy/infrastructure-automation/",
"moved": "https://www.azion.com/en/documentation/architectures/deploy/infrastructure-orchestration/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/api-gateways/implement-api-gateways-security/",
"moved": "https://www.azion.com/en/documentation/architectures/api-gateways/implement-api-gateways-security/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/bot-management/protect-your-applications-with-bot-management/",
"moved": "https://www.azion.com/en/documentation/architectures/bot-management/protect-your-applications-with-bot-management/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/compliance/governance-risk-compliance/",
"moved": "https://www.azion.com/en/documentation/architectures/compliance/governance-risk-compliance/"
},
{
"from": "https://www.azion.com/en/documentation/architectures/edge-enhanced/",
"moved": "https://www.azion.com/en/documentation/architectures/edge-application/edge-enhanced-applications/"
},
{
"from": "https://www.azion.com/en/documentation/architectures/edge-native/",
"moved": "https://www.azion.com/en/documentation/architectures/edge-application/edge-native-applications/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/jamstack/deploy-jamstack-applications/",
"moved": "https://www.azion.com/en/documentation/architectures/jamstack/deploy-jamstack-applications/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/live-streaming-delivery/live-streaming-delivery-with-hls/",
"moved": "https://www.azion.com/en/documentation/architectures/live-streaming-delivery/live-streaming-delivery-with-hls/"
},
{
"from": "https://www.azion.com/en/documentation/architectures/edge-application/microservices/",
"moved": "https://www.azion.com/en/documentation/architectures/edge-application/microservices-applications/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/security-modernization/security-modernization-with-edge-computing/",
"moved": "https://www.azion.com/en/documentation/architectures/security-modernization/security-modernization-with-edge-computing/"
},
{
"from": "https://www.azion.com/en/documentation/architecture/edge-firewall/web-application-and-api-protection-waap/",
"moved": "https://www.azion.com/en/documentation/architectures/edge-firewall/web-application-and-api-protection-waap/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/sso-azure-saml/",
"moved": "https://www.azion.com/en/documentation/products/guides/sso-microsoft-entra-saml/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/content-targeting/",
"moved": "https://www.azion.com/en/documentation/products/guides/content-targeting-integration/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/ab-testing/",
"moved": "https://www.azion.com/en/documentation/products/guides/ab-testing-marketplace/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/configure-massive-redirect/",
"moved": "https://www.azion.com/en/documentation/products/guides/massive-redirect-integration/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/secure-token-marketplace/",
"moved": "https://www.azion.com/en/documentation/products/guides/secure-token/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-manager-basic-template/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-starter-kit/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-manager-with-edge-firewall-template/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-integration-kit/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/block-tor-exit-nodes-template/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager-and-tor-block-starter-kit/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/bot-protection/",
"moved": "https://www.azion.com/en/documentation/products/guides/bot-manager/"
},
{
"from": "https://www.azion.com/en/documentation/products/marketplace/bot-protection/",
"moved": "https://www.azion.com/en/documentation/products/marketplace/bot-manager/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/how-to-access-rtm/",
"moved": "https://www.azion.com/en/documentation/products/guides/how-to-access-azion-console/"
},
{
"from": "https://www.azion.com/en/documentation/products/use-a-template-via-rtm/",
"moved": "https://www.azion.com/en/documentation/products/use-a-template-via-azion-console/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/getting-to-know-real-time-manager/",
"moved": "https://www.azion.com/en/documentation/products/guides/getting-to-know-azion-console/"
},
{
"from": "https://www.azion.com/en/documentation/products/application-acceleration/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/application-acceleration/"
},
{
"from": "https://www.azion.com/en/documentation/devtools/runtime-api/supported-frameworks/nextjs/",
"moved": "https://www.azion.com/en/documentation/products/devtools/azion-edge-runtime/frameworks-compatibility/"
},
{
"from": "https://www.azion.com/en/documentation/products/accounts/clients/",
"moved": "https://www.azion.com/en/documentation/products/accounts/accounts/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/permissions-marketplace/",
"moved": "https://www.azion.com/en/documentation/products/marketplace/permissions-marketplace/"
},
{
"from": "https://www.azion.com/en/documentation/products/accounts/billing/",
"moved": "https://www.azion.com/en/documentation/products/accounts/billing-and-subscriptions/"
},
{
"from": "https://www.azion.com/en/documentation/products/accounts/users-and-teams/",
"moved": "https://www.azion.com/en/documentation/products/accounts/users-management/"
},
{
"from": "https://www.azion.com/en/documentation/products/data-streaming/",
"moved": "https://www.azion.com/en/documentation/products/observe/data-streaming/"
},
{
"from": "https://www.azion.com/en/documentation/products/real-time-events/",
"moved": "https://www.azion.com/en/documentation/products/observe/real-time-events/"
},
{
"from": "https://www.azion.com/en/documentation/products/real-time-metrics/",
"moved": "https://www.azion.com/en/documentation/products/observe/real-time-metrics/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-pulse/",
"moved": "https://www.azion.com/en/documentation/products/observe/edge-pulse/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/main-settings/",
"moved": "https://www.azion.com/en/documentation/products/edge-application/build/main-settings/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/application-acceleration/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/application-acceleration/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/digital-certificates/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/digital-certificates/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/device-groups/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/device-groups/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/domains/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/domains/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-caching/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/edge-caching/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/edge-functions/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions-instances/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/edge-functions-instances/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/image-processor/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/image-processor/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/load-balancer/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/load-balancer/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/real-time-purge/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/real-time-purge/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/rules-engine/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/rules-engine/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/websocket/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/websocket/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/error-responses/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/error-responses/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/single-origin/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/origins/"
},
{
"from": "https://www.azion.com/en/documentation/products/intelligent-dns/",
"moved": "https://www.azion.com/en/documentation/products/secure/intelligent-dns/"
},
{
"from": "https://www.azion.com/en/documentation/products/intelligent-dns/dnssec-compatibility/",
"moved": "https://www.azion.com/en/documentation/products/secure/intelligent-dns/dnssec-compatibility/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/rules-engine/",
"moved": "https://www.azion.com/en/documentation/products/secure/firewall/rules-engine/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/access-permissions/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/access-permissions/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/ddos-protection/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/ddos-protection/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/ddos-protection/ddos-mitigation/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/ddos-protection/ddos-mitigation/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/edge-functions/firewall/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/edge-functions/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/edge-functions-instances/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/edge-functions-instances/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/network-layer-protection/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/network-layer-protection/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/network-layer-protection/network-lists/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/network-layer-protection/network-lists/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/web-application-firewall/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/web-application-firewall/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/waf-rule-sets/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/web-application-firewall/rules-engine/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/web-application-firewall/waf-custom-allowed-rules/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/web-application-firewall/custom-allowed-rules/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-orchestrator/",
"moved": "https://www.azion.com/en/documentation/products/deploy/edge-orchestrator/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-orchestrator/edge-node/",
"moved": "https://www.azion.com/en/documentation/products/deploy/edge-orchestrator/edge-node/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-orchestrator/edge-services/",
"moved": "https://www.azion.com/en/documentation/products/deploy/edge-orchestrator/edge-services/"
},
{
"from": "https://www.azion.com/en/documentation/products/credentials/",
"moved": "https://www.azion.com/en/documentation/products/deploy/credentials/"
},
{
"from": "https://www.azion.com/en/documentation/products/dev-tools/",
"moved": "https://www.azion.com/en/documentation/devtools/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/runtime/overview/",
"moved": "https://www.azion.com/en/documentation/devtools/runtime/overview/"
},
{
"from": "https://www.azion.com/en/documentation/devtools/guides/cli/use-polyfills/",
"moved": "https://www.azion.com/en/documentation/devtools/guides/use-polyfills/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/debugging/",
"moved": "https://www.azion.com/en/documentation/devtools/debugging/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/javascript-examples/",
"moved": "https://www.azion.com/en/documentation/devtools/javascript-examples/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/runtime-api/supported-frameworks/nextjs/",
"moved": "https://www.azion.com/en/documentation/devtools/runtime-api/supported-frameworks/nextjs/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/runtime/overview/",
"moved": "https://www.azion.com/en/documentation/devtools/runtime/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/runtime-apis/javascript/",
"moved": "https://www.azion.com/en/documentation/devtools/runtime-apis/javascript/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/cache-settings/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/domains/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-applications/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/first-steps/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/origins/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/overview/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-error-responses/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/error-responses/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-features/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/features/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-first-steps/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/first-steps/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-limits/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/limits/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-overview/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-queries/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/queries/"
},
{
"from": "https://www.azion.com/en/documentation/products/graphql-api-queries-examples/",
"moved": "https://www.azion.com/en/documentation/devtools/graphql-api/queries-examples/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/permissions-mktp/",
"moved": "https://www.azion.com/en/documentation/products/marketplace/permissions-marketplace/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/blacklists-ip-addresses-edge/",
"moved": "https://www.azion.com/en/documentation/products/guides/blocklists-ip-addresses-edge/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/content_target_mktp/",
"moved": "https://www.azion.com/en/documentation/products/guides/content-targeting-integration/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/helloworld/",
"moved": "https://www.azion.com/en/documentation/products/guides/hello-world/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/ipaddress/",
"moved": "https://www.azion.com/en/documentation/products/guides/ip-address-reputation/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/limitpayload/",
"moved": "https://www.azion.com/en/documentation/products/guides/limit-payload-size/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/massive-redirect/",
"moved": "https://www.azion.com/en/documentation/products/guides/configure-massive-redirect/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/how-to-massive-redirection/",
"moved": "https://www.azion.com/en/documentation/products/guides/massive-redirect-integration/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/radware/",
"moved": "https://www.azion.com/en/documentation/products/guides/radware-bot-manager/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/requestdata/",
"moved": "https://www.azion.com/en/documentation/products/guides/process-request-data-into-headers/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/requestvariation/",
"moved": "https://www.azion.com/en/documentation/products/guides/request-variation-controller/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/schedule-blocking/",
"moved": "https://www.azion.com/en/documentation/products/guides/scheduled-blocking/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/securetoken/",
"moved": "https://www.azion.com/en/documentation/products/guides/secure-token/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/send-event/",
"moved": "https://www.azion.com/en/documentation/products/guides/send-event-to-endpoint/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/sendmessages/",
"moved": "https://www.azion.com/en/documentation/products/guides/send-messages-to-a-queue/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/edge-caching/",
"moved": "https://www.azion.com/en/documentation/products/guides/cache-settings/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/apis-performance-sites-application-acceleration/",
"moved": "https://www.azion.com/en/documentation/products/guides/advanced-cache-key/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/using-gzip-mime-types/",
"moved": "https://www.azion.com/en/documentation/products/guides/gzip-compression/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/static-sites-on-edge/",
"moved": "https://www.azion.com/en/documentation/products/guides/rules-engine/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/azion-plugin-grafana/",
"moved": "https://www.azion.com/en/documentation/products/guides/azion-plugin-grafana-custom-dash/"
},
{
"from": "https://www.azion.com/en/documentation/services/custom-education-programs/",
"moved": "https://www.azion.com/en/documentation/services/instructor-led-training/"
},
{
"from": "https://www.azion.com/en/documentation/services/solutions-lab/integration-services/",
"moved": "https://www.azion.com/en/documentation/services/integration-services/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/suite-bypass/",
"moved": "https://www.azion.com/en/documentation/products/guides/edge-application-proxy-template/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/suite-image-cache/",
"moved": "https://www.azion.com/en/documentation/products/guides/image-optimization-template/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/suite-static-cache/",
"moved": "https://www.azion.com/en/documentation/products/guides/static-cache-template/"
},
{
"from": "https://www.azion.com/en/documentation/products/build/develop-with-azion/frameworks-specific/angular/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/angular/"
},
{
"from": "https://www.azion.com/en/documentation/products/build/develop-with-azion/frameworks-specific/astro/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/astro/"
},
{
"from": "https://www.azion.com/en/documentation/products/build/develop-with-azion/frameworks-specific/hexo/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/hexo/"
},
{
"from": "https://www.azion.com/en/documentation/products/build/develop-with-azion/frameworks-specific/next/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/next/"
},
{
"from": "https://www.azion.com/en/documentaton/products/build/develop-with-azion/frameworks-specific/react/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/react/"
},
{
"from": "https://www.azion.com/en/documentation/products/build/develop-with-azion/frameworks-specific/vite/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/vite/"
},
{
"from": "https://www.azion.com/en/documentation/products/build/develop-with-azion/frameworks-specific/vue/",
"moved": "https://www.azion.com/en/documentation/products/cli/frameworks/vue/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/access-permissions/",
"moved": "https://www.azion.com/en/documentation/products/accounts/teams-permissions/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/http2/",
"moved": "https://www.azion.com/en/documentation/products/edge-application/main-settings/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/nextjs-ssr-on-azion-platform/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/getting-started/",
"moved": "https://www.azion.com/en/documentation/products/get-started/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/overview/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/first-steps/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/guides/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/domains/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/origins/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions-instances/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/cli-running-macos/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/cli-creating-edge-application/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/cli-static-application/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/developers/",
"moved": "https://www.azion.com/en/documentation/"
},
{
"from": "https://www.azion.com/developers/documentation/",
"moved": "https://www.azion.com/en/documentation/"
},
{
"from": "https://www.azion.com/dev/",
"moved": "https://www.azion.com/en/documentation/"
},
{
"from": "https://www.azion.com/dev/documentation/",
"moved": "https://www.azion.com/en/documentation/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/ab-testing-marketplace/",
"moved": "https://www.azion.com/en/documentation/products/guides/ab-testing-marketplace/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/"
},
{
"from": "https://www.azion.com/en/documentation/products/CLI/",
"moved": "https://www.azion.com/en/documentation/products/cli/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-amazon-s3/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-amazon-s3/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-amazon-kinesis/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-amazon-kinesis/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-azure-blob/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-azure-blob/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-azure-monitor/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-azure-monitor/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/cross-origin-resource-sharing-cors/",
"moved": "https://www.azion.com/en/documentation/products/guides/cross-origin-resource-sharing-cors/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/customizing-error-response-page/",
"moved": "https://www.azion.com/en/documentation/products/guides/customizing-error-response-page/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-datadog/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-datadog/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-elasticsearch/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-elasticsearch/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/graphql-aggregated-data/",
"moved": "https://www.azion.com/en/documentation/products/guides/graphql-aggregated-data/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/graphql-metadata/",
"moved": "https://www.azion.com/en/documentation/products/guides/graphql-metadata/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/graphql-top-x-query/",
"moved": "https://www.azion.com/en/documentation/products/guides/graphql-top-x-query/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/using-gzip-mime-types/",
"moved": "https://www.azion.com/en/documentation/products/guides/using-gzip-mime-types/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-google-bigquery/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-google-bigquery/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/how-to-check-your-WAF-mode/",
"moved": "https://www.azion.com/en/documentation/products/guides/how-to-check-your-waf-mode/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/how-to-check-your-waf-mode/",
"moved": "https://www.azion.com/en/documentation/products/guides/how-to-check-your-waf-mode/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/how-to-massive-redirection/",
"moved": "https://www.azion.com/en/documentation/products/guides/how-to-massive-redirection/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/how-to-update-your-edge-firewall/",
"moved": "https://www.azion.com/en/documentation/products/guides/how-to-update-your-edge-firewall/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/http2/",
"moved": "https://www.azion.com/en/documentation/products/guides/http2/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/mitigating-a-vulnerability-httpoxy/",
"moved": "https://www.azion.com/en/documentation/products/guides/mitigating-a-vulnerability-httpoxy/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/original-ip-header/",
"moved": "https://www.azion.com/en/documentation/products/guides/original-ip-header/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/endpoint-splunk/",
"moved": "https://www.azion.com/en/documentation/products/guides/endpoint-splunk/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/open-tickets/",
"moved": "https://www.azion.com/en/documentation/products/guides/open-tickets/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/troubleshooting/check-page-cache-time/",
"moved": "https://www.azion.com/en/documentation/products/guides/check-page-cache-time/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/troubleshooting/crossdomain-error-in-jw-player/",
"moved": "https://www.azion.com/en/documentation/products/guides/crossdomain-error-in-jw-player/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/troubleshooting/cors-errors/",
"moved": "https://www.azion.com/en/documentation/products/guides/cors-errors/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/troubleshooting/run-the-dig-command/",
"moved": "https://www.azion.com/en/documentation/products/guides/run-the-dig-command/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/troubleshooting/run-the-traceroute-command/",
"moved": "https://www.azion.com/en/documentation/products/guides/run-the-traceroute-command/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/ab-testing/",
"moved": "https://www.azion.com/en/documentation/products/guides/ab-testing/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/apis-performance-sites-application-acceleration/",
"moved": "https://www.azion.com/en/documentation/products/guides/apis-performance-sites-application-acceleration/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/blacklists-ip-addresses-edge/",
"moved": "https://www.azion.com/en/documentation/products/guides/blacklists-ip-addresses-edge/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/secure-token/",
"moved": "https://www.azion.com/en/documentation/products/guides/secure-token/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/content-targeting/",
"moved": "https://www.azion.com/en/documentation/products/guides/content-targeting/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/jamstack-using-flareact/",
"moved": "https://www.azion.com/en/documentation/products/guides/jamstack-using-flareact/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/hosting-edge-website/",
"moved": "https://www.azion.com/en/documentation/products/guides/hosting-edge-website/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/static-sites-on-edge/",
"moved": "https://www.azion.com/en/documentation/products/guides/static-sites-on-edge/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/jwt/",
"moved": "https://www.azion.com/en/documentation/products/guides/jwt/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/massive-redirect/",
"moved": "https://www.azion.com/en/documentation/products/guides/massive-redirect/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/nextjs-on-azion-platform/",
"moved": "https://www.azion.com/en/documentation/products/guides/nextjs-on-azion-platform/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/paywall-edge-function-jwt/",
"moved": "https://www.azion.com/en/documentation/products/guides/paywall-edge-function-jwt/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/serverless-functions/",
"moved": "https://www.azion.com/en/documentation/products/guides/serverless-functions/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/webassembly-on-azion-platform/",
"moved": "https://www.azion.com/en/documentation/products/guides/webassembly-on-azion-platform/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/edge-caching/",
"moved": "https://www.azion.com/en/documentation/products/guides/edge-caching/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/edge-firewall/",
"moved": "https://www.azion.com/en/documentation/products/guides/edge-firewall/"
},
{
"from": "https://www.azion.com/en/documentation/products/",
"moved": "https://www.azion.com/en/documentation/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/",
"moved": "https://www.azion.com/en/documentation/products/guides/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/",
"moved": "https://www.azion.com/en/documentation/products/guides/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/open-tickets/",
"moved": "https://www.azion.com/en/documentation/products/guides/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/configurations/",
"moved": "https://www.azion.com/en/documentation/products/guides/"
},
{
"from": "https://www.azion.com/en/documentation/products/how-to/troubleshooting/",
"moved": "https://www.azion.com/en/documentation/products/guides/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/runtime-api/supported-frameworks/flareact/",
"moved": "https://www.azion.com/en/documentation/products/cli/edge-applications/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/jamstack-using-flareact/",
"moved": "https://www.azion.com/en/documentation/products/cli/edge-applications/"
},
{
"from": "https://www.azion.com/en/documentation/products/first-steps/",
"moved": "https://www.azion.com/en/documentation/products/getting-started/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/botmanager/",
"moved": "https://www.radware.com/products/bot-manager/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/nextjs-on-azion-platform/",
"moved": "https://www.azion.com/en/documentation/products/guides/nextjs-ssr-on-azion-platform/"
},
{
"from": "https://www.azion.com/en/documentation/products/deliver/",
"moved": "https://www.azion.com/en/documentation/products/deploy/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/single-origin/",
"moved": "https://www.azion.com/en/documentation/products/edge-application/origins/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-firewall/web-application-firewall/custom-allowed-rules/",
"moved": "https://www.azion.com/en/documentation/products/edge-firewall/web-application-firewall/waf-custom-allowed-rules/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/origins/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/origins/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-applications/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/tutorials/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/content-azion-secure-token/",
"moved": "https://www.azion.com/en/documentation/products/guides/secure-token/"
},
{
"from": "https://www.azion.com/en/documentation/products/changelog/previous-years/",
"moved": "https://www.azion.com/en/documentation/products/changelog/previous-year/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/domains/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/test-edge-application-through-hosts-file/",
"moved": "https://www.azion.com/en/documentation/products/guides/stage-edge-application-through-hosts-file/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/edge-functions/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/edge-functions/runtime-api/supported-frameworks/flareact/",
"moved": "https://www.azion.com/en/documentation/products/devtools/azion-edge-runtime/frameworks-compatibility/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/jamstack-using-flareact/",
"moved": "https://www.azion.com/en/documentation/products/devtools/azion-edge-runtime/frameworks-compatibility/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/jamstack-using-flareact",
"moved": "https://www.azion.com/en/documentation/products/devtools/azion-edge-runtime/frameworks-compatibility/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/jamstack-using-flareact/",
"moved": "https://www.azion.com/en/documentation/products/devtools/azion-edge-runtime/frameworks-compatibility/"
},
{
"from": "https://www.azion.com/en/documentation/products/real-time-metrics/metrics-events-dash/",
"moved": "https://www.azion.com/en/documentation/products/real-time-metrics/metrics-dash/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-functions/runtime-apis/lua/cache/",
"moved": "https://www.azion.com/en/documentation/devtools/runtime/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/peering/",
"moved": "https://www.azion.com/en/documentation/products/azion-network-program/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/first-steps/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/use-cases/hosting-edge-site/",
"moved": "https://www.azion.com/en/documentation/products/guides/hosting-edge-website/"
},
{
"from": "https://www.azion.com/en/documentation/products/web-application-firewall/",
"moved": "https://www.azion.com/en/documentation/products/secure/edge-firewall/web-application-firewall/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/secure/test-zone/",
"moved": "https://www.azion.com/en/documentation/products/secure/troubleshoot/test-zone/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/overview/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/cli/origins/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/products/install-an-integration/",
"moved": "https://www.azion.com/en/documentation/products/marketplace/install-an-integration/"
},
{
"from": "https://www.azion.com/en/docs/products/load-balancer/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/load-balancer/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-application/origins",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/origins/"
},
{
"from": "https://www.azion.com/en/documentation/products/CLI/",
"moved": "https://www.azion.com/en/documentation/products/azion-cli/overview/"
},
{
"from": "https://www.azion.com/en/documentation/productos/edge-application/",
"moved": "https://www.azion.com/en/documentation/products/build/edge-application/"
},
{
"from": "https://www.azion.com/en/documentation/products/accounts/delete/",
"moved": "https://www.azion.com/en/documentation/products/guides/delete-account/"
},
{
"from": "https://www.azion.com/en/documentation/products/guides/permissions-mktp/",
"moved": "https://www.azion.com/en/documentation/products/marketplace/permissions-marketplace/"
},
{
"from": "https://www.azion.com/en/docs/products/peering/",
"moved": "https://www.azion.com/en/documentation/products/azion-network-program/"
},
{
"from": "https://www.azion.com/en/documentation/services/service-plans/",
"moved": "https://www.azion.com/en/documentation/services/support/"
},
{
"from": "https://www.azion.com/en/documentation/products/accounts/delete",
"moved": "https://www.azion.com/en/documentation/products/guides/delete-account/"
},
{
"from": "https://www.azion.com/en/documentation/products/changelog/previous-years",
"moved": "https://www.azion.com/en/documentation/products/changelog/previous-year/"
},
{
"from": "https://www.azion.com/en/documentation/services/support/business-events-support/",
"moved": "https://www.azion.com/en/documentation/services/business-events-support/"
},
{
"from": "https://www.azion.com/en/documentation/products/edge-functions/runtime-apis/",
"moved": "https://www.azion.com/en/documentation/devtools/runtime/overview/"