-
Notifications
You must be signed in to change notification settings - Fork 14
/
prod-refractr.yml
1307 lines (1130 loc) · 48.5 KB
/
prod-refractr.yml
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
# these domains will be given a cert and rule through
# the ingress.yaml.template by being added to the domains
# output from refractr.py
default-domains:
- prod.refractr.prod.webservices.mozgcp.net
- refractr.mozilla.org
default-headers:
Strict-Transport-Security: '"max-age=60; includeSubDomains" always'
refracts:
# OPST-305
- remote-settings-dev.allizom.org/:
- settings.dev.mozaws.net
# OPST-305
- firefox.settings.services.allizom.org/:
- settings-cdn.stage.mozaws.net
# OPST-305
- firefox-settings-attachments.cdn.allizom.org/:
- firefox-settings-attachments-cdn.stage.mozaws.net
# SVCSE-1586
- accounts.firefox.com/:
- accounts.mozilla.org
- accounts.mozilla.com
# bug 503731, 528747, 537144, SE-1683, SE-2688
- addons.mozilla.org/:
- extensions.mozilla.org
- themes.mozilla.org
- update.mozilla.org
- updates.mozilla.org
- addons.update.mozilla.org
- firefoxaddons.com
- www.firefoxaddons.com
- addons.mozilla.com
- '*.add-ons.mozilla.com'
- '*.add-ons.mozilla.org'
# bug 1342698
# NOTE: changed from http->https after verifying
- blog.mozilla.org/: mozillausa.org
# bug 614684
- blog.mozilla.org/blog/2008/12/22/congratulations-fox-for-all-wins-impact-mozilla/:
- impactmozilla.com
- www.impactmozilla.com
# bug 655911
- blog.mozilla.org/website-archive/2010/12/08/mozilla-uninstall-survey/: survey.mozilla.com
# bug 1214568
- blog.mozilla.org/creative/: creative.mozilla.org
status: 302
# bug 908234
- blog.mozilla.org/webdev/: webdev.mozilla.org
# SE-2698
- mana.mozilla.org/wiki/display/FIREFOX/Security: securitywiki.mozilla.org
# https://github.com/mozilla/bedrock/issues/10736
- dsts:
- if: '$request_uri ~ ^/(.*)$'
^/(.*)$: www.mozilla.org/careers/$1
- redirect: www.mozilla.org/careers/
srcs:
- careers.mozilla.org
tests:
- https://careers.mozilla.org/: https://www.mozilla.org/careers/
# - https://careers.mozilla.org/#locations: https://www.mozilla.org/careers/#locations
- https://careers.mozilla.org/listings: https://www.mozilla.org/careers/listings
- https://careers.mozilla.org/listings/: https://www.mozilla.org/careers/listings/
- https://careers.mozilla.org/feed/: https://www.mozilla.org/careers/feed/
- https://careers.mozilla.org/position/gh/12345/: https://www.mozilla.org/careers/position/gh/12345/
# https://github.com/mozilla/bedrock/issues/10736
- www.mozilla.org/careers/:
# bug 1246674
- careers.mozilla.com
# bug 1243236
- jobs.mozilla.org
- jobs.mozilla.com
- college.mozilla.org
- college.mozilla.com
- interns.mozilla.com
- university.mozilla.org
- university.mozilla.com
# bug 1627952
- community.mozilla.org/campaigns/common-voice-sprint: voice-sprint.mozilla.community
- community.mozilla.org/campaigns/help-firefox-win-on-android-support-users-in-your-language: supportsprint.mozilla.community
# bug 1627952
- community.mozilla.org/campaigns/new-firefox/: newfirefox.mozilla.community
# bug 1627952
- community.mozilla.org/campaigns/firefox-quantum-sprint/: firefoxsprint.mozilla.community
# bug 1697571
- community.mozilla.org/es/groups/mozilla-hispano/:
- mozilla-hispano.org
- www.mozilla-hispano.org
# bug 1697571
- discourse.mozilla.org/c/community-portal/mozilla-hispano/304: foro.mozilla-hispano.org
# bug 1697638
- community.mozilla.org/es/groups/mozilla-venezuela/:
- mozillavenezuela.org
- www.mozillavenezuela.org
# bug 572191
# NOTE: changed from http->https after verifying
- crash-stats.mozilla.com/:
- talkback.mozilla.org
- talkback-public.mozilla.org
- talkback-reports.mozilla.org
# bug 695084, SE-1571, MP-1163, MP-1238
- developer.mozilla.org/:
- dev.mozilla.org
- developer.cdn.mozilla.net
- yari-demos.prod.mdn.mozit.cloud
- yari-demos.stage.mdn.mozit.cloud
# bug 811323
- developer.mozilla.org/demos/devderby/: devderby.mozilla.org
# bug 1290923
- disconnect.me/trackerprotection/:
- trackingprotection.info
- www.trackingprotection.info
status: 302
# bug 1543423
- discourse.mozilla.org/: discourse.mozilla-community.org
# bug 1200302
- discourse.mozilla.org/c/add-ons/: forums.mozilla.org
status: 307
# bug 1274647
- discourse.mozilla-community.org/c/firefox-development/: ask.mozilla.org
status: 307
# bug 998526, 20170328
- docs.google.com/forms/d/1VSlo6TZ5p42LyTx2q7Wd5vQ5hZHvWtA9JN6JWicXmBM/viewform/: confsurvey.mozilla.org
# SE-1187
- docs.mozilla-releng.net/:
- mozilla-releng.net
- www.mozilla-releng.net
# bug 1263033
- donate.mozilla.org/: join.mozilla.org
status: 307
# bug 1311146
- donate.mozilla.org/: sendto.mozilla.org
status: 307
# SE-1371
- searchfox.org/: dxr.mozilla.org
# bug 1502902 (formerly events.mozilla.org/techspeakers/)
# bug 1660250
- community.mozilla.org/en/groups/tech-speakers/:
- techspeakers.mozilla.org
# bug 1195576
# FIXME: this commented out redirect is incorrect, added correct one below
#- mozillafoundation.org:
- foundation.mozilla.org/:
- mozillafoundation.com
- mozillafoundation.net
# SE-1677
- foundation.mozilla.org/en/artifacts/x-ray-goggles/: goggles.mozilla.org
# SVCSE-2048
- future.mozilla.org/builders/: builders.mozilla.community
# bug 1334200
- github.com/mozilla/popcorn-js/:
- popcornjs.org
- www.popcornjs.org
# bug 784556, 880423
- mana.mozilla.org/wiki/display/SD/print.mozilla.com/: print.mozilla.com
# SVCSE-1589
- monitor.mozilla.org/: monitor.firefox.com
# bug 1330438
- moz-releng-docs.readthedocs.io/en/latest/: docs.pub.build.mozilla.org
# mozdev.org legacy redirects. See https://jira.mozilla-community.org/browse/MCWS-55
# and https://jira.mozilla.com/browse/CORE-1422
- quickfilters.quickfolders.org/: quickfilters.mozdev.org
- zombiekeys.quickfolders.org/: zombiekeys.mozdev.org
- quickfolders.org/: quickfolders.mozdev.org
- github.com/eyalroz/bidimailui/: bidiui.mozdev.org
- wiki.mozilla.org/Consulting: consultants.mozdev.org
- www.amadzone.org/mozilla-archive-format/: maf.mozdev.org
- smarttemplates.quickfolders.org/: smarttemplate4.mozdev.org
- quickpasswords.quickfolders.org/: quickpasswords.mozdev.org
- github.com/eyalroz/removedupes/: removedupes.mozdev.org
- www.mozilla.org/:
- mozdev.org
- www.mozdev.org
# bug 1335596
# NOTE: changed redirect to its final destination
- mozilla.design/: designlanguage.mozilla.org
- community.mozilla.org/:
- mozillaecuador.org
- www.mozillaecuador.org
# IO-2668
- moztw.org/community/:
- mozilla.tw
- www.mozilla.tw
# bug 1533035
- mozilla.github.io/geckoview/:
- gv.dev
- geckoview.dev
status: 302
# SE-1561, SE-1666, SE-1856, SE-3059
- connect.mozilla.org/ : ideas.mozilla.org
- mozilla.github.io/oi-website/: openinnovation.mozilla.org
# jira SE-1295
- mozilla.hosted.panopto.com/:
- air.mozilla.org
- air.mozilla.com
- airmo.mozilla.org
# bug 1441865
- mozilla-releng.net/treestatus/: treestatus.mozilla.org
status: 302
- mozilla-services.readthedocs.io/en/latest/: docs.services.mozilla.com
# Jira SE-1354
- dsts:
# u->p rewrite [SE-1960]
- if: '$request_uri ~ ^/u/([^/]+)/*$'
^/u/([^/]+)/*$: people.mozilla.org/p/$1
# no rewrite
- if: '$request_uri ~ ^/(.+)$'
^/(.+)$: people.mozilla.org/$1
# fallthrough
- redirect: people.mozilla.org/
srcs:
- mozillians.org
# bug 1617378
- www.mozillians.org
tests:
# u->p rewrite
- https://mozillians.org/u/abcdefg/: https://people.mozilla.org/p/abcdefg
- https://www.mozillians.org/u/abcdefg: https://people.mozilla.org/p/abcdefg
# no rewrite
- https://mozillians.org/x/abcdefg: https://people.mozilla.org/x/abcdefg
# fallthrough
- https://www.mozillians.org/: https://people.mozilla.org/
- https://mozillians.org/: https://people.mozilla.org/
# bug 1459170
- perf-html.io/: cleopatra.io
status: 302
- dsts:
- url: /*
headers:
Clear-Site-Data: \"storage\"
endpoint: profiler.firefox.com/
- ^/(.*): profiler.firefox.com/
srcs: perf-html.io
headers:
Clear-Site-Data: \"storage\"
tests:
- https://perf-html.io/: https://profiler.firefox.com/
- pontoon.mozilla.org/:
# bug 985510
- pontoon.mozillalabs.com
# bug 1666547
- l10n.mozilla.org
# bug 1304806
- phonebook.mozilla.org/: phonebook.mozilla.com
status: 302
# SE-1902, SE-2005, SE-3040
- ideas.mozilla.org/:
- input.mozilla.org
- input.mozilla.com
- m.input.mozilla.org
- m.input.mozilla.com
- feedback.mozilla.org
- ideas.mozilla.com
preserve-path: false
status: 302
- start.mozilla.org/:
- start.mozilla.com
- start-prod.mozilla.com
# bug 835529 , 1912874
- support.mozilla.org/:
- www.support.mozilla.org
- support.mozilla.com
# SE-1564
- support.mozilla.org/en-US/kb/canary-domain-use-application-dnsnet: use-application-dns.net
# SVCSE-1946
- support.mozilla.org/en-US/kb/end-support-mozilla-hubs:
- hub.mozilla.com
- hub.mozilla.org
- hubs.mozilla.com
- hubs.mozilla.org
- mixedreality.mozilla.org
# SVCSE-1316
- dsts:
- /downloads/browser/latest/secure-proxy.xpi: archive.mozilla.org/pub/vpn/fpn/secure-proxy.xpi
- /downloads/browser/updates.json: archive.mozilla.org/pub/vpn/fpn/updates.json
# Needs to start with ^/ to switch from `location = /` to `location /`
# https://github.com/mozilla-it/refractr/blob/80c019c468bb8ad6633bc5d53e6b154d8142dd6c/refractr/complex.py#L159-L160
- ^/(.*): support.mozilla.org/kb/firefox-private-network-no-longer-available?utm_source=inproduct&utm_medium=support
srcs:
- fpn.firefox.com
- premium.firefox.com
- private-network.firefox.com
- testpilot.firefox.com
# bug 20170327
- videos.cdn.mozilla.net/:
- videos-cdn.mozilla.net
- videos.mozilla.org
# bug 1614193
- commonvoice.mozilla.org/fy-NL/: voice.mozilla.frl
status: 302
# bug 1419948
- web.archive.org/web/20180106223649/https://webfwd.org/:
- webfwd.org
- www.webfwd.org
- webfwd.net
- www.webfwd.net
status: 307
# bug 1220879
- whatsdeployed.io/: whatsdeployed.paas.allizom.org
status: 302
# bug 1035550
- wiki.mozilla.org/: wiki.mozilla.com
# bug 1290260
- wiki.mozilla.org/DeveloperServices/HistoricalVCS: git.mozilla.org
status: 302
# bug 713065
- wiki.mozilla.org/MarketingGuide: guides.mozilla.org
# bug 804895
- wiki.mozilla.org/Platform/AreWeFunYet:
- arewefunyet.com
- www.arewefunyet.com
- www.mozilla.org/:
- arewestableyet.com
- www.arewestableyet.com
# bug 1384357
- www.extensiontest.com/: extensiontest.com
status: 302
# bug 1136318
# NOTE: changed from http->https after verifying
- www.mozilla.de/:
- mozilla.at
- www.mozilla.at
- dsts:
- url: /.well-known/matrix/client
headers:
Access-Control-Allow-Origin: "'*'"
Access-Control-Allow-Methods: "'GET, POST, PUT, DELETE, OPTIONS'"
Access-Control-Allow-Headers: "'X-Requested-With, Content-Type, Authorization'"
X-Backend-Server: TS
Cache-Control: max-age=3600
endpoint: www.mozilla.org
- ^/(.*): 'www.mozilla.org/$1'
srcs: mozilla.org
headers:
X-Backend-Server: TS
Cache-Control: max-age=3600
tests:
- https://mozilla.org/foo: https://www.mozilla.org/foo
- https://mozilla.org/.well-known/matrix/client: https://www.mozilla.org/.well-known/matrix/client
# virtual-redirect-autogen.conf merged into virtual-redirect
# this used to be generated by a script somehow, but not now.
# that script was dnsconfig/bin/generate-virtual-redirects.sh
- www.mozilla.org/:
# bug 1598043
- mozilla.ch
# bug 1660250
# jira SE-2237
- www.mozilla.ch
# bug 1559362
- mozilla-uk.org
#- virtual-redirect-mozilla.org FIXME: NXDOMAIN
#- virtual-redirect-mozilla.com FIXME: NXDOMAIN
- mozillaservice.net
- www.mozillaservice.net
#- getfirfox.com FIXME: valid ip, but MarkMonitor page
#- www.getfirfox.com FIXME: valid ip, but MarkMonitor page
- update-firefox.com
- www.update-firefox.com
- onemozilla.org
- www.onemozilla.org
# bug 1234360
- firefoxflicks.mozilla.org
# bug 126196
- mozilla.hu
- www.mozilla.hu
# bug 1331870
- events.mozspaces.org
# We're not using website-beta right now.
- website-beta.mozilla.org
# split out store.mozilla.org|com as per bug 1142629
# modified for bug 1260869 now that gear.mozilla.org has gone away
- www.store.mozilla.org
- store.mozilla.org
- store.mozilla.com
# bug 619759
- www.mozilla.net
# bug 1268570
- firefox-downloaden.de
# bug 830904
- communitystore.mozilla.org
# TODO: can we decom this?
# bug 1234360
- mobilepartners.mozilla.org
# bug 1329125
- masterfirefoxos.mozilla.org
# SE-1224
- inhumanads.com
- www.inhumanads.com
- staging.inhumanads.com
status: 302
- www.mozilla.org/: mozilla-podcasts.org
# bug 1361114
- www.mozilla.org/: webwewant.mozilla.org
# bug 1169224, 1473015
- www.mozilla.org/:
- mozilla.org.uk
- www.mozilla.org.uk
status: 302
# bug 1461516
- www.mozilla.org/: smartdogz.org
status: 302
# FIXME: does this really have to be 307 different from 302 above?
- www.mozilla.org/: www.smartdogz.org
status: 307
- www.mozilla.org/: triagebot.mozilla.org
- www.mozilla.org/: send.firefox.com
# bug 537925
# NOTE: simplified this after testing, this simple redirect is all that is needed
- www.mozilla.org/contribute/: contribute.mozilla.org
# bug 1255221
- www.mozilla.org/contribute/friends/: friends.mozilla.org
status: 302
# bug 1597866
- www.mozilla.org/firefox/developer/: firefox.dev
- www.mozilla.org/firefox/lockwise/: lockbox.firefox.com
# This is LE Blacklisted and needs to be removed
- www.mozilla.org/firefox/new/?redirect_source=getfirefox-com:
- getfirefox.com
- www.getfirefox.com
# bug 1463086
- mozilla.org/nl/:
- mozilla.nl
- www.mozilla.nl
# bug 1274647
- discourse.mozilla-community.org/c/firefox-development/: ask.mozilla.org
status: 307
# bug 1212612, 1212612
# FIXME: this commented out redirect is incorrect, added correct one below
#- www.mozilla.org/firefox/new/?utm_source=getfirefox-de&utm_medium=referral:
- www.mozilla.org/de/firefox/new/:
- getfirefox.de
- www.getfirefox.de
# bug 896570
- www.mozilla.org/firefox/?redirect_source=getfirefox-com:
- mozillafirefox.com
- www.mozillafirefox.com
- firefoxbrowser.com
- www.firefoxbrowser.com
- firefoxbrowser.org
- www.firefoxbrowser.org
# bug 1415362
- www.mozilla.org/firefox/?utm_medium=referral&utm_source=firefoxquantum-com: firefoxquantum.com
# bug 1492428
- www.mozilla.org/fr/firefox/new/?utm_source=mozilla-fr&utm_medium=referral:
- mozilla.fr
- www.mozilla.fr
# bug 1212631, 1427843
# FIXME: this commented out redirect is incorrect, added correct one below
#- www.mozilla.org/firefox/new/?utm_source=getfirefox-co-uk&utm_medium=referral: getfirefox.co.uk
- www.mozilla.org/en-GB/firefox/new/: getfirefox.co.uk
# bug 1492428
- www.mozilla.org/en-GB/firefox/new/?utm_source=mozilla-eu&utm_medium=referral:
- mozilla.eu
- www.mozilla.eu
- mozila.eu
- www.mozila.eu
# bug 1025191
- www.mozilla.org/en-US/:
- mozilla.ca
- www.mozilla.ca
- www.mozilla.org/contribute/:
- ambassadors.mozilla.org
- students.mozilla.org
- fsa.mozilla.org
# bug 1335617
- www.mozilla.org/en-US/about/policy/lean-data/:
- leandatapractices.org
- www.leandatapractices.org
- leandatapractices.com
- www.leandatapractices.com
status: 302
# bug 1056359
- www.mozilla.org/en-US/firefox/new/:
- mozilla.it
- www.mozilla.it
- wwww.mozilla.it
- www.mozilla.org/firefox/:
# bug 838939
- downloadmozillafirefox.com
# bug 948963
- spark.mozilla.org
# SE-1862
- boot2gecko.net
- www.boot2gecko.net
- firefoxos.com
- www.firefoxos.com
- firefox-academic-centers.org
- www.firefox-academic-centers.org
- firefox-academic-centers.com
- www.firefox-academic-centers.com
- firefox-academic-center.org
- www.firefox-academic-center.org
- firefox-academic-center.com
- www.firefox-academic-center.com
- mozillaservice.org
- www.mozillaservice.org
- opentochoice.org
- www.opentochoice.org
- onebillionplusyou.com
- www.onebillionplusyou.com
status: 302
# bug 1351245
- 'www.mozilla.org/firefox/channel/desktop/#developer': aurora.mozilla.org
status: 302
# bug 656457
- 'www.mozilla.org/firefox/channel/#beta': beta.mozilla.org
# bug 1301642, 1326390
- 'www.mozilla.org/firefox/channel/#nightly': nightly.mozilla.org
status: 302
# bug 1212612, 1427843
- www.mozilla.org/firefox/new/?utm_source=getfirefox-net&utm_medium=referral:
- getfirefox.net
- www.getfirefox.net
# bug 688019, 1427843
- www.mozilla.org/firefox/new/?utm_source=getfirefox-org&utm_medium=referral:
- getfirefox.org
- www.getfirefox.org
# bug 1262196, 1427843
- www.mozilla.org/firefox/new/?utm_source=firefox-hu&utm_medium=referral:
- firefox.hu
- www.firefox.hu
# bug 749836
- www.mozilla.org/firefox/new/?utm_source=firefox-pt&utm_medium=referral:
- firefox.pt
- www.firefox.pt
# bug 1243355
- www.mozilla.org/fy-NL/:
- mozilla.frl
- www.mozilla.frl
status: 302
# bug 1268570, 1427843
# FIXME: this commented out redirect is incorrect, added correct one below
#- www.mozilla.org/firefox/new/?utm_source=firefox-lt&utm_medium=referral:
- www.mozilla.org/lt/firefox/:
- firefox.lt
- www.firefox.lt
- www.mozilla.org/MPL/: mpl.mozilla.org
# bug 1311392
- www.mozilla.org/pl/firefox/new/:
- mozillafirefox.pl
- www.mozillafirefox.pl
status: 302
# bug 1440375
- www.mozilla.org/pt-BR/: mozilla.com.br
# bug 1427843
- www.mozilla.org/firefox/new/?utm_source=firefox-be&utm_medium=referral:
- firefox.be
- www.firefox.be
# bug 692904
# FIXME: apache points to http; this will go to https
- www.mozilla-russia.org/:
- mozilla.com.ru
- www.mozilla.com.ru
# SE-2950
- wiki.mozilla.org/india/: wiki.mozillaindia.org
status: 302
- developer.mozilla.org/: devs.mozillaindia.org
status: 302
# NOTE: changed from http->https after verifying
#- www.thunderbird.net/:
- www.thunderbird.net/calendar/:
- lightning-project.org
- www.lightning-project.org
- dsts:
- /faq.html/: support.mozilla.org/products/firefox-lockwise//
- /addon/updates.json/: mozilla-lockwise.github.io/addon/updates.json/
- /: www.mozilla.org/firefox/lockwise/
srcs: lockwise.firefox.com
# bug 756358
- dsts:
# NOTE: changed from http->https after verifying
- /dnt-enabler.tpl: www.mozilla.org/media/dnt/dnt-enabler.tpl
- /: www.mozilla.org/firefox/dnt/
srcs: dnt.mozilla.org
# bug 1119912, 1165757, 1213900, 1200359
- dsts:
- /dmexco: 'www.mozilla.org/about/partnerships/contentservices/?utm_source=content-moz-org&utm_medium=referral&utm_content=content_team'
- ^/(.+): 'www.mozilla.org/about/partnerships/contentservices/$1/?utm_source=content-moz-org&utm_medium=referral&utm_content=content_team'
- /: 'www.mozilla.org/about/partnerships/contentservices/?utm_source=content-moz-org&utm_medium=referral&utm_content=content_team'
srcs: content.mozilla.org
status: 302
tests:
# this test must be specified because rewrites `^/(.+)` will not generate a test
- http://content.mozilla.org/test: 'https://www.mozilla.org/about/partnerships/contentservices/test/?utm_source=content-moz-org&utm_medium=referral&utm_content=content_team'
- dsts:
- /about: www.mozilla.org/firefox/about
- ^/([^\x00-\x1F]+): www.mozilla.org/$1
- /: www.mozilla.org/firefox
srcs:
- mozilla.com
- www.mozilla.com
- '*.www.mozilla.com'
tests:
- http://mozilla.com/: https://www.mozilla.org/firefox
- http://mozilla.com/about: https://www.mozilla.org/firefox/about
- http://mozilla.com/foo: https://www.mozilla.org/foo
- http://en-US.www.mozilla.com/: https://www.mozilla.org/firefox
# bug 1566155
- dsts:
- /tree.php/: people.mozilla.org/o
- ^/search/(.*): 'people.mozilla.org/s?query=$1&who=staff'
- /: people.mozilla.org/
srcs: phonebook.mozilla.org
status: 302
tests:
# this test must be specified because rewrites `^/(.*)` will not generate a test
- http://phonebook.mozilla.org/search/test: https://people.mozilla.org/s?query=test&who=staff
# bug 1627952
- dsts:
- /campaigns: community.mozilla.org/campaigns/
- /commonvoice: community.mozilla.org/activities/contributing-to-common-voice/
- /en-US/nightly: community.mozilla.org/activities/
- /webextensions: community.mozilla.org/activities/
- /rust-hack: community.mozilla.org/activities/
- /webvr-camp: community.mozilla.org/activities/
- /webcompat-sprint: community.mozilla.org/activities/
- /: community.mozilla.org/
srcs: activate.mozilla.community
# bug 1618512, 1627952
- dsts:
- /firefoxvoicecampaign: community.mozilla.org/activities/test-firefox-voice/
- /respond_campaign: community.mozilla.org/campaigns/respond-campaign/
- /firefoxforgood-surfacingqualitycontentandconversat: community.mozilla.org/campaigns/
- /becomeabetatestingbughunter: community.mozilla.org/campaigns/become-a-beta-testing-bughunter/
- /commonvoice100: community.mozilla.org/campaigns/common-voice-100-hours-sprint/
- /firefox66supportsprint: community.mozilla.org/groups/support-mozilla-sumo/?view=events
- /firefoxfightsforyoucampaign: community.mozilla.org/campaigns/firefoxfightsforyoucampaign/
- /darkfunnelEN: community.mozilla.org/campaigns/become-a-dark-funnel-detective/
- /: community.mozilla.org/events/
srcs: events.mozilla.org
- dsts:
- /people: community.mozilla.org/groups/mozilla-reps/?view=people
- /events: community.mozilla.org/groups/mozilla-reps/?view=events
- /: community.mozilla.org/groups/mozilla-reps/
srcs: reps.mozilla.org
status: 307
# SE-2412
- dsts:
- if: '$request_uri ~ "^/update_check/(?<id>\d+)"'
^.*$: 'versioncheck.addons.mozilla.org/en-US/themes/update-check/$id?src=gp'
- if: '$request_uri ~ "^(?<id>(?:/\w{2,3}(?:-\w{2,6})?))/update_check/(?<update_id>\d+)"'
^.*$: 'versioncheck.addons.mozilla.org$id/themes/update-check/$update_id?src=gp'
- if: '$request_uri ~ "^(?:/\w{2,3}(?:-\w{2,6})?)?/gallery/[Dd]esigner/(?<id>.*)"'
^.*$: 'addons.mozilla.org/firefox/user/$id/'
- if: '$request_uri ~ "^(?:/\w{2,3}(?:-\w{2,6})?)?/persona/(?<id>\d+)"'
^.*$: 'addons.mozilla.org/persona/$id'
- if: '$request_uri ~ "^(?:/\w{2,3}(?:-\w{2,6})?)?/gallery/All/Movers"'
^.*$: 'addons.mozilla.org/firefox/themes/?sort=up-and-coming'
- if: '$request_uri ~ "^(?:/\w{2,3}(?:-\w{2,6})?)?/gallery/All/Recent"'
^.*$: 'addons.mozilla.org/firefox/themes/?sort=created'
- if: '$request_uri ~ "^(?:/\w{2,3}(?:-\w{2,6})?)?/gallery/All/Popular"'
^.*$: 'addons.mozilla.org/firefox/themes/?sort=popular'
- redirect: addons.mozilla.org/themes/
srcs:
- getpersonas.com
- www.getpersonas.com
tests:
- http://getpersonas.com/update_check/1234: 'https://versioncheck.addons.mozilla.org/en-US/themes/update-check/1234?src=gp'
- http://www.getpersonas.com/update_check/5678: 'https://versioncheck.addons.mozilla.org/en-US/themes/update-check/5678?src=gp'
- http://getpersonas.com/a_c-12_d/update_check/1234: 'https://versioncheck.addons.mozilla.org/a_c-12_d/themes/update-check/1234?src=gp'
- http://www.getpersonas.com/a_c-12_d/update_check/12345678: 'https://versioncheck.addons.mozilla.org/a_c-12_d/themes/update-check/12345678?src=gp'
- http://getpersonas.com/a_c/gallery/Designer/something: 'https://addons.mozilla.org/firefox/user/something/'
- http://www.getpersonas.com/a_c/gallery/designer/something: 'https://addons.mozilla.org/firefox/user/something/'
- http://getpersonas.com/a_c/persona/456: 'https://addons.mozilla.org/persona/456'
- http://www.getpersonas.com/persona/45: 'https://addons.mozilla.org/persona/45'
- http://getpersonas.com/gallery/All/Movers: 'https://addons.mozilla.org/firefox/themes/?sort=up-and-coming'
- http://www.getpersonas.com/12d-a1/gallery/All/Movers: 'https://addons.mozilla.org/firefox/themes/?sort=up-and-coming'
- http://getpersonas.com/12_-a1/gallery/All/Recent: 'https://addons.mozilla.org/firefox/themes/?sort=created'
- http://www.getpersonas.com/gallery/All/Recent: 'https://addons.mozilla.org/firefox/themes/?sort=created'
- http://getpersonas.com/A_C/gallery/All/Popular: 'https://addons.mozilla.org/firefox/themes/?sort=popular'
- http://www.getpersonas.com/gallery/All/Popular: 'https://addons.mozilla.org/firefox/themes/?sort=popular'
- http://getpersonas.com/: 'https://addons.mozilla.org/themes/'
- http://www.getpersonas.com/not/a/real/path: 'https://addons.mozilla.org/themes/'
- dsts:
- if: '$query_string ~ "^hl=(?<hl>[^&]+)&url=(?<url>[^&]+)"'
^/$: 'www.stopbadware.org/firefox?hl=$hl&url=$url?'
- if: '$query_string ~ "^url=(?<url>[^&]+)"'
^/$: 'www.stopbadware.org/firefox?url=$url?'
- redirect: www.mozilla.org/
srcs:
- malware-error.mozilla.com
- '*.malware-error.mozilla.com'
tests:
- http://malware-error.mozilla.com/?hl=en&url=path: 'https://www.stopbadware.org/firefox?hl=en&url=path'
- http://malware-error.mozilla.com/?url=path: 'https://www.stopbadware.org/firefox?url=path'
- http://malware-error.mozilla.com/: https://www.mozilla.org/
- http://malware-error.mozilla.com/foobar: https://www.mozilla.org/foobar
- dsts:
- if: '$query_string ~ "^hl=(?<hl>[^&]+)&url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_error/?tpl=mozilla&hl=$hl&url=$url?'
- if: '$query_string ~ "^url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_error/?tpl=mozilla&url=$url?'
- redirect: www.mozilla.org/
srcs:
- phish-error.mozilla.com
- '*.phish-error.mozilla.com'
tests:
- http://phish-error.mozilla.com/?hl=en&url=path: 'https://safebrowsing.google.com/safebrowsing/report_error/?tpl=mozilla&hl=en&url=path'
- http://phish-error.mozilla.com/?url=path: 'https://safebrowsing.google.com/safebrowsing/report_error/?tpl=mozilla&url=path'
- http://phish-error.mozilla.com/: https://www.mozilla.org/
- http://phish-error.mozilla.com/foobar: https://www.mozilla.org/foobar
- dsts:
- if: '$query_string ~ "^hl=(?<hl>es)(?:-ES|-AR)&url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=$hl&url=$url?'
- if: '$query_string ~ "^hl=(?:nb|nn)-NO&url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=no&url=$url?'
- if: '$query_string ~ "^hl=pt-PT&url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=pt-BR&url=$url?'
- if: '$query_string ~ "^hl=(?<hl>ar|bg|cs|da|de|el|en|en-GB|es|fi|fr|hu|it|iw|ja|ko|nl|no|l|pt-BR|ru|sk|sv|tr|zh-CN|zh-TW)&url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=$hl&url=$url?'
- if: '$query_string ~ "^hl=(?<hl>[^&]+)&url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=$hl&url=$url?'
# bug 1387246, send lone url query strings to google safebrowsing
- if: '$query_string ~ "url=(?<url>[^&]+)"'
^/$: 'safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&url=$url?'
- redirect: www.mozilla.org/
srcs:
- phish-report.mozilla.com
- '*.phish-report.mozilla.com'
tests:
- http://phish-report.mozilla.com/?hl=es&url=path: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=es&url=path'
- http://phish-report.mozilla.com/?hl=nb-NO&url=path: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=no&url=path'
- http://phish-report.mozilla.com/?hl=pt-PT&url=path: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=pt-BR&url=path'
- http://phish-report.mozilla.com/?hl=en-GB&url=path: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=en-GB&url=path'
- http://phish-report.mozilla.com/?hl=zh-TW&url=path: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=zh-TW&url=path'
- http://phish-report.mozilla.com/?hl=foo&url=bar: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&hl=foo&url=bar'
- http://phish-report.mozilla.com/?url=foobar: 'https://safebrowsing.google.com/safebrowsing/report_phish/?tpl=mozilla&url=foobar'
- http://phish-report.mozilla.com/foobar: https://www.mozilla.org/foobar
status: 302
# bug 1716653
- relay.firefox.com/: mozmail.com
status: 302
- mozilla-hub.atlassian.net/: jira.mozilla.com
status: 302
# bug SE-2241
- dsts:
- if: '$request_uri ~ ^/(\d+)$'
^/(\d+)$: bugzilla.mozilla.org/show_bug.cgi?id=$1
- if: '$request_uri ~ ^/form(.+)$'
^/form(.+)$: bugzilla.mozilla.org/form$1
- if: '$request_uri ~ ^/(.+)'
^/(.+)$: bugzilla.mozilla.org/buglist.cgi?quicksearch=$1
- redirect: bugzilla.mozilla.org/
srcs:
- bugzil.la
tests:
- https://bugzil.la/: https://bugzilla.mozilla.org/
- https://bugzil.la/123456: https://bugzilla.mozilla.org/show_bug.cgi?id=123456
- https://bugzil.la/form.foo: https://bugzilla.mozilla.org/form.foo
- https://bugzil.la/glonk: https://bugzilla.mozilla.org/buglist.cgi?quicksearch=glonk
# https://mozilla-hub.atlassian.net/browse/SVCSE-140
- www.mozilla.org/: status.mozilla.org
status: 302
# https://mozilla-hub.atlassian.net/browse/SE-2450
- dsts:
- if: '$request_uri ~ "(?i)^/universityambassadors/?$"' # bug 870410
^: 'campus.mozilla.community/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/os/?$"'
^: 'support.mozilla.org/products/firefox-os?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/desktop/?$"' # bug 1004274
^: 'www.mozilla.org/firefox/desktop/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/android/?$"' # bug 1053356
^: 'www.mozilla.org/firefox/android/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/developer/?$"' # bug 1091132
^: 'www.mozilla.org/firefox/developer/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/(10|independent)/?$"' # bug 1091891, bug 1094235
^: 'www.mozilla.org/firefox/features/independent/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/hello/?$"' # bug 1098044
^: 'www.mozilla.org/firefox/hello/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/personal/?$"' # bug 1159397
^: 'www.mozilla.org/firefox/personal/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/choose/?$"' # bug 1219380
^: 'www.mozilla.org/firefox/choose/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/switch/?$"' # bug 1432228
^: 'www.mozilla.org/firefox/switch/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/enterprise/?$"' # Bug 1445276
^: 'www.mozilla.org/firefox/enterprise/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/containers/?$"' # bug 1451367
^: 'www.mozilla.org/firefox/facebookcontainer/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/pdx/?$"' # bug 1456278
^: 'www.mozilla.org/firefox/new/?xv=portland&campaign=city-portland-2018&redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/pair/?$"' # bug 1539867
^: 'accounts.firefox.com/pair/'
- if: '$request_uri ~ "(?i)^/(join|rejoindre)/?$"' # bug 1548919
^: 'www.mozilla.org/firefox/accounts/?redirect_source=join'
- if: '$request_uri ~ "(?i)^/(privacy|privatsphaere)/?$"' # SRE-431
^: 'www.mozilla.org/firefox/privacy/products/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/viepriv(e|é)e/?$"'
^: 'www.mozilla.org/firefox/privacy/products/?redirect_source=firefox-com'
- if: '$request_uri ~ "(?i)^/nightly/?$"' # https://github.com/mozmeao/www.firefox.com/issues/9
^: 'www.mozilla.org/en-US/firefox/channel/desktop/#nightly'
- if: '$request_uri ~ "(?i)^/armchair/?$"' # issue #21
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=armchair&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/jvn/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=jvn&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/literally/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=literally&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/pivot/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=pivot&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/podsave/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=podsave&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/smartless/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=smartless&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/thedaily/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=thedaily&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/ezra/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=ezra&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/explained/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=explained&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/wtf/?$"'
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=wtf&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/liebe/?$"' # issue 32
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=prosieben&utm_campaign=unfck&utm_content=podcast'
- if: '$request_uri ~ "(?i)^/(unfu?ck|love|rendonslenetplusnet)/?$"' # issues #19, #18, #15, #13, and #27, and Jira SE-1256
^: 'www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=referral&utm_source=firefox.com&utm_campaign=unfck'
- if: '$request_uri ~ "(?i)^/famil(y|ies)/?$"' # Jira SE-3278
^: 'www.mozilla.org/firefox/family/?utm_medium=referral&utm_source=firefox.com&utm_campaign=firefox-for-families'
- if: '$request_uri ~ "(?i)^/famil(y|ies)/?\?.*$"' # Jira SE-3278
^: 'www.mozilla.org/firefox/family/'
- redirect: 'www.mozilla.org/firefox/new/?redirect_source=firefox-com' #fallback redirect, bug 896570, bug 1427843
status: 302
headers:
# NOTE: this overrides the default behavior and removed includeSubdomains
Strict-Transport-Security: max-age=0
preserve-path: false
srcs:
- www.firefox.com
- firefox.com
- fxc-stage.moz.works
tests:
- http://www.firefox.com/: 'https://www.mozilla.org/firefox/new/?redirect_source=firefox-com'
- http://firefox.com/: 'https://www.mozilla.org/firefox/new/?redirect_source=firefox-com'
- http://www.firefox.com/universityambassadors: 'https://campus.mozilla.community/?redirect_source=firefox-com'
- http://www.firefox.com/UniversityAmbassadors/: 'https://campus.mozilla.community/?redirect_source=firefox-com'
- http://www.firefox.com/os/: 'https://support.mozilla.org/products/firefox-os?redirect_source=firefox-com'
- http://www.firefox.com/desktop/: 'https://www.mozilla.org/firefox/desktop/?redirect_source=firefox-com'
- http://www.firefox.com/android/: 'https://www.mozilla.org/firefox/android/?redirect_source=firefox-com'
- http://www.firefox.com/developer/: 'https://www.mozilla.org/firefox/developer/?redirect_source=firefox-com'
- http://www.firefox.com/10/: 'https://www.mozilla.org/firefox/features/independent/?redirect_source=firefox-com'
- http://www.firefox.com/independent/: 'https://www.mozilla.org/firefox/features/independent/?redirect_source=firefox-com'
- http://www.firefox.com/hello/: 'https://www.mozilla.org/firefox/hello/?redirect_source=firefox-com'
- http://www.firefox.com/personal/: 'https://www.mozilla.org/firefox/personal/?redirect_source=firefox-com'
- http://www.firefox.com/choose/: 'https://www.mozilla.org/firefox/choose/?redirect_source=firefox-com'
- http://www.firefox.com/switch/: 'https://www.mozilla.org/firefox/switch/?redirect_source=firefox-com'
- http://www.firefox.com/enterprise/: 'https://www.mozilla.org/firefox/enterprise/?redirect_source=firefox-com'
- http://www.firefox.com/containers/: 'https://www.mozilla.org/firefox/facebookcontainer/?redirect_source=firefox-com'
- http://www.firefox.com/pdx/: 'https://www.mozilla.org/firefox/new/?xv=portland&campaign=city-portland-2018&redirect_source=firefox-com'
- http://www.firefox.com/pair/: 'https://accounts.firefox.com/pair/'
- http://www.firefox.com/join/: 'https://www.mozilla.org/firefox/accounts/?redirect_source=join'
- http://www.firefox.com/rejoindre/: 'https://www.mozilla.org/firefox/accounts/?redirect_source=join'
- http://www.firefox.com/privacy/: 'https://www.mozilla.org/firefox/privacy/products/?redirect_source=firefox-com'
- http://www.firefox.com/privatsphaere/: 'https://www.mozilla.org/firefox/privacy/products/?redirect_source=firefox-com'
- http://www.firefox.com/vieprivee/: 'https://www.mozilla.org/firefox/privacy/products/?redirect_source=firefox-com'
- http://www.firefox.com/nightly/: 'https://www.mozilla.org/en-US/firefox/channel/desktop/#nightly'
- http://www.firefox.com/armchair/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=armchair&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/jvn/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=jvn&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/literally/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=literally&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/pivot/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=pivot&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/podsave/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=podsave&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/smartless/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=smartless&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/thedaily/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=thedaily&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/ezra/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=ezra&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/explained/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=explained&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/wtf/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=wtf&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/liebe/: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=audio&utm_source=prosieben&utm_campaign=unfck&utm_content=podcast'
- http://www.firefox.com/unfck: 'https://www.mozilla.org/firefox/unfck/?redirect_source=firefox-com&utm_medium=referral&utm_source=firefox.com&utm_campaign=unfck'