-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral.txt
More file actions
6415 lines (5796 loc) · 177 KB
/
general.txt
File metadata and controls
6415 lines (5796 loc) · 177 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
## **************************** Database Definitions *****************************************
## See http://www.oclc.org/support/documentation/ezproxy/db/default.htm
### Moved to github tracking 3/5/25 PJM ###
#
# IP Address list for Bloomington
#
E 129.79.0.0/16
I 140.182.72.0/21
E 140.182.144.0/20
E 140.182.176.13-140.182.176.14
E 140.182.177.13-140.182.177.14
E 149.159.128.0/17
I 149.160.128.0/17
E 149.161.128.0/17
E 149.165.144.0/20
E 149.165.224.0/20
E 156.56.0.0/17
E 156.56.200.0/21
### Exclude IP of NAT Wireless as "on campus" ###
### Added 10/06/2022 PMAHOLM ###
E 10.20.0.0/15
E 10.20.0.0 - 10.21.255.255
### Group Realm VPN IP's ###
### Added 9/11/15 PJM ###
I 140.182.28.1 - 140.182.31.254
I 140.182.88.1 - 140.182.91.254
I 140.182.92.1 - 140.182.95.254
I 140.182.96.1 - 140.182.99.254
### EDUROAM Addresses ###
I 140.182.204.1 - 140.182.207.255
### IU JetStream ###
I 149.165.168.1 - 149.165.175.254
### IU Guests ###
I 149.165.244.1 - 149.165.245.254
### Indiana GigaPop ###
I 149.165.128.1 - 149.165.143.254
I 149.165.160.1 - 149.165.167.254
I 149.165.176.1 - 149.165.223.254
I 149.165.240.1 - 149.165.243.254
I 149.165.246.1 - 149.165.255.254
### Always Authenticate 11/2018 ###
I 149.159.0.0 - 149.159.255.255
A 149.159.32.0/19
### New VPN Ranges 06/06/2025 ###
I 140.182.4.0/22
I 10.119.0.0/16
#
# Vista workstation defined as 'off-campus' for testing 1 Feb 2008
I 129.79.34.13
#
# Windows 7 workstation defined as 'off-campus' for testing 16 June 2010
I 129.79.34.181
#
# Chuck's workstation defined as 'off-campus' for testing 16 February 2011
I 129.79.35.3
#
# Keith's workstation defined as 'off-campus' for testing 21 October 2011
I 129.79.35.32
#
# Remote Workstation (bl-libg-lit0t08.ads.iu.edu) defined as 'off-campus' for testing 2 August 2013
I 129.79.35.23
#
# Stanza moved to top of includes file per OCLC instruction to try to resolve ongoing access problem
# Updated per ralight 2024-01-03
Option CookiePassThrough
HTTPMethod DELETE
HTTPMethod PUT
HTTPMethod OPTIONS
Title Lippincott (updated 20231215)
HTTPHeader -request -process ez-proxy-request-hostname
HTTPHeader -request -process X-CORRELATION-ID
U https://lippincottsolutionssuite.lww.com
HJ https://lippincottsolutionssuite.lww.com
HJ https://procedures.lww.com
HJ https://advisor.lww.com
HJ https://competency.lww.com
HJ https://blendedlearning.lww.com
HJ https://learning.lww.com
HJ https://lns-sso.lww.com
HJ https://legacy-lippincottsolutionssuite.lww.com
HJ https://legacy-procedures.lww.com
HJ https://legacy-advisor.lww.com
HJ https://legacy-competency.lww.com
HJ https://legacy-blendedlearning.lww.com
HJ http://lippincottsolutionssuite.lww.com
HJ http://procedures.lww.com
HJ http://advisor.lww.com
HJ http://competency.lww.com
HJ http://blendedlearning.lww.com
HJ http://learning.lww.com
HJ http://lns-sso.lww.com
HJ http://legacy-lippincottsolutionssuite.lww.com
HJ http://legacy-procedures.lww.com
HJ http://legacy-advisor.lww.com
HJ http://legacy-competency.lww.com
HJ http://legacy-blendedlearning.lww.com
DJ lww.com
Option Cookie
################################### TEMPORARY RESOURCES #######################################
# Added per cwlamb 2026-02-23
# Trial access through 2026-04-23
Title Chinese Soviet Republic: Prototype for a Revolution
URL https://ae.eastview.com/aes112
HJ ae.eastview.com/aes112
HJ ae.eastview.com
DJ eastview.com
####################################################################################################
## **************************00000*****************************************************************
## **************************AAAAA*****************************************************************
# Updated per ralight 2026-01-07
# Stanza formerly called Art Song Transpositions
Title AST Publications (updated 20251217)
URL https://artsonginstitutional.com
HJ https://artsonginstitutional.com
HJ https://www.artsonginstitutional.com
HJ https://artsongtranspositions.com
HJ http://artsongtranspositions.com
HJ https://astpublications.com
HJ http://astpublications.com
HJ artsonginstitutional.com
HJ https://www.astpublications.com
HJ https://www.artsongtranspositions.com
HJ www.astpublications.com
HJ www.artsongtranspositions.com
HJ www.artsonginstitutional.com
HJ https://www.astfree.com
HJ www.astfree.com
HJ https://astfree.com
HJ astfree.com
DJ astfree.com
DJ astpublications.com
DJ artsongtranspositions.com
DJ artsonginstitutional.com
T A&AePortal
U https://www.aaeportal.com
HJ https://www.aaeportal.com
DJ aaeportal.com
# Updated to https per ralight 2022-07-29
Title AAPG Datapages
URL https://archives.datapages.com/
HJ http://archives.datapages.com/
HJ search.datapages.com
HJ www.aapg.org
HJ www.searchanddiscovery.com
DJ datapages.com
DJ aapg.org
DJ searchanddiscovery.com
# ABC-CLIO Databases and Ebooks moved to common_stanza
# Updated per ralight 2022-08-01
Title Abbreviationes Online
URL https://abbrev.net
HJ http://abbrev.net
HJ https://abbreviationes.net
HJ https://wiredcloud.net
HJ http://wiredcube.net
HJ https://www.ruhr-uni-bochum.de
HJ http://www.ruhr-uni-bochum.de
HJ https://locomotiefje.isc.ru.nl
HJ http://locomotiefje.isc.ru.nl
HJ https://www.ru.nl
HJ https//www.ru.nl
HJ macg4cube.gpam.ruhr-uni-bochum.de
HJ macg4cube2.gpam.ruhr-uni-bochum.de
HJ www.ruhr-uni-bochum.de
HJ macg4cube.gpam.rub.de
HJ macg4cube2.gpam.rub.de
DJ ruhr-uni-bochum.de
DJ rub.de
DJ ru.nl
# Updated per RAL 2020-11-12
# Previously called Academic Rights Press
Title MusicID ARP
URL http://www.academicrightspress.com/
HJ https://www.academicrightspress.com/
HJ https://academicrightspress.com
HJ https://musicid.academicrightspress.com
HJ academicrightspress.com
HJ musicid.academicrightspress.com
DJ academicrightspress.com
Title Access Newspaper Archive
URL https://access.newspaperarchive.com
HJ http://access.newspaperarchive.com
HJ access.newspaperarchive.com
HJ newspaperarchive.com
HJ https://newspaperarchive.com
DJ access.newspaperarchive.com
Title ACLS Humanities E-Book
URL http://www.humanitiesebook.org/
HJ humanitiesebook.org
HJ https://humanitiesebook.org/
HJ http://www.humanitiesebook.org/
HJ https://www.humanitiesebook.org/
HJ https://ets.umdl.umich.edu
HJ https://hdl.handle.net
HJ https://hdl.lib.umich.edu
HJ https://name.umdl.umich.edu
HJ https://quod.lib.umich.edu
HJ https://www.hti.umich.edu
HJ ets.umdl.umich.edu
HJ hdl.handle.net
HJ hdl.lib.umich.edu
HJ name.umdl.umich.edu
HJ quod.lib.umich.edu
HJ www.hti.umich.edu
DJ handle.net
DJ humanitiesebook.org
DJ umich.edu
# Updated per RAL 2020-12-30
Title Acoustical Society of America
URL http://www.acousticalsociety.org/
HJ acousticalsociety.org
HJ asadl.org
HJ https://acousticalsociety.org
HJ https://asadl.org
HJ https://www.acousticalsociety.org
HJ https://www.asadl.org
HJ www.acousticalsociety.org
HJ www.asadl.org
DJ acousticalsociety.org
DJ asadl.org
# Updated per ralight 2026-01-13
Title Acta Astronomica
URL https://acta.astrouw.edu.pl/
HJ http://acta.astrouw.edu.pl
HJ acta.astrouw.edu.pl
DJ astrouw.edu.pl
# Updated per ralight 2026-01-13
Title Ad Parnassum
URL https://www.utorpheus.com/index.php?route=adparnassum/home
HJ http://www.adparnassum.org/
HJ https://www.utorpheus.com
HJ www.utorpheus.com
HJ www.adparnassum.org
DJ utorpheus.com
DJ adparnassum.org
# Updated per ralight 2022-11-15
# Formerly called AdSpender
Title Advertising Insights
URL https://edu-adinsights.kantarmediana.com
HJ http://edu.adspender.kantarmediana.com
HJ edu-adinsights.kantarmediana.com
HJ edu.adspender.kantarmediana.com
HJ tms-mi.com
HJ kantarmediana.com
HJ products.kantarmediana.com
HJ adspender.kantarmediana.com
HJ adspender.tns-mi.com
HJ adinsights.kantarmediana.com
DJ kantarmediana.com
# Added per CWL 10-25-2023
Title Ad Age
URL https://home.adage.com/site/IndianaUniversity
HJ https://home.adage.com
HJ https://mag.adage.com
HJ home.adage.com
HJ mag.adage.com
DJ home.adage.com
DJ mag.adage.com
DJ adage.com
# Updated per RAL 2026-03-19
Title Africa-Confidential (updated 20240312)
URL https://www.africa-confidential.com
HJ africa-confidential.com
HJ https://africa-confidential.com
HJ www.africa-confidential.com
DJ africa-confidential.com
# Added per ralight 2023-01-23
# Stanza needed in conjunction with Sabinet African Journals
Title African Journals Online (updated 20191108)
URL http://www.ajol.info/
HJ ajol.info
HJ content.ajarchive.org
HJ https://ajol.info
HJ https://www.ajol.info
HJ www.ajol.info
DJ ajol.info
# Updated per RAL 2020-09-04
Title Akademiai Kiado
HTTPHeader -request -process X-Requested-With
URL https://akjournals.com/
HJ akademiai.com
HJ akjournals.com
HJ https://akademiai.com
HJ https://akjournals.com
HJ https://www.akademiai.com
HJ https://www.akjournals.com
HJ www.akademiai.com
HJ www.akjournals.com
HJ http://akjournals.com
DJ akademiai.com
DJ akjournals.com
# Add per RAL 2019-03-14
Title Al Jadid
URL https://www.aljadid.com/content/digiuser
HJ www.aljadid.com
HJ aljadid.com
DJ aljadid.com
# Updated to https per RAL 2019-08-27
Option DomainCookieOnly
Title AAIDD Online Journals (updated 20190410)
URL https://www.aaiddjournals.org
H 65.156.1.66
HJ aaiddjournals.org
HJ https://aaiddjournals.org
HJ https://pinnacle-secure.allenpress.com
HJ https://www.aaiddjournals.org
HJ www.aaiddjournals.org
DJ aaiddjournals.org
DJ pinnacle-secure.allenpress.com
Option Cookie
# Added per ralight 2021-08-25
Title Against the Grain
URL https://www.charleston-hub.com/media/atg/
HJ www.charleston-hub.com
HJ https://www.against-the-grain.com
HJ www.against-the-grain.com
DJ against-the-grain.com
DJ charleston-hub.com
# Added per ralight 2021-10-14
Title Allen Press
URL https://meridian.allenpress.com
HJ meridian.allenpress.com
HJ allenpress.com
DJ allenpress.com
# Updated per ralight 2021-07-30
HTTPMethod DELETE
Title Almanac of the Federal Judiciary (updated 20210726)
HTTPHeader -request -process X-GWT-*
HTTPHeader -request -process X-ApiKey
HTTPHeader -request -process X-Api-Key
HTTPHeader -request -process X-CPID
URL http://almanacofthefederaljudiciary.com
HJ https://login.wolterskluwer.com
HJ https://almanacofthefederaljudiciary.com
HJ almanacofthefederaljudiciary.com
DJ almanacofthefederaljudiciary.com
Mimefilter application/json .* javascript
Find http:\/\/
Replace http://
Find name="redirect_uri" value="https://
Replace name="redirect_uri" value="https://^A
# Added per CWL 12-17-2020
Title American Bench
URL http://bench.forster-long.com/search
HJ bench.forster-long.com
DJ bench.forster-long.com
# American Chemical Society moved to common stanza
Title American Institute of Mathematical Sciences
URL http://aimsciences.org/journals/index.jsp
HJ www.aimsciences.org
DJ aimsciences.org
# Added per ralight 2023-04-25
# Elsevier title with access on native platform
Title American Journal of Obstetrics & Gynecology
URL https://www.ajog.org/
HJ www.ajog.org
DJ ajog.org
#Updated per RAL 2018-05-14
Title American Marketing Association
URL https://www.ama.org/
HJ ama.org
HJ archive.ama.org
HJ https://ama.org
HJ https://archive.ama.org
HJ http://journals.ama.org
HJ journals.ama.org
HJ www.ama.org
DJ ama.org
Find journals.ama.org
Replace ^pjournals.ama.org^
# Updated per ralight 2021-12-22
Title American Physiological Society (updated 20211214)
URL https://journals.physiology.org
HJ d2avczb82rh8fa.cloudfront.net
HJ https://d2avczb82rh8fa.cloudfront.net
HJ https://journals.physiology.org
HJ https://physiology.org
HJ https://www.physiology.org
HJ journals.physiology.org
HJ physiology.org
HJ www.physiology.org
DJ physiology.org
Find physiology.org\/sites
Replace ^Pphysiology.org^\/sites
Find physiology.org\/content\/
Replace ^Pphysiology.org^\/content\/
# Updated per ralight 2023-04-26
T American Society for Biochemistry and Molecular Biology (Updated 20230418)
U http://www.asbmb.org
HJ asbmb.org
HJ https://mem.asbmb.org
HJ https://www.asbmb.org
HJ jbc.org
HJ jlr.org
HJ mcponline.org
HJ mem.asbmb.org
HJ www.asbmb.org
HJ www.jbc.org
HJ www.jlr.org
HJ www.mcponline.org
HJ https://www.jbc.org
HJ https://jbc.org
DJ asbmb.org
DJ jbc.org
DJ jlr.org
DJ mcponline.org
Title Aevum
URL http://aevum.vitaepensiero.it
DJ vitaepensiero.it
# Added per ralight 2025-07-14
# Content has migrated multiple times, the latest from Oxford to Elsevier
# Stanza for Society site where we also have access
Title American Society for Nutrition Journals
URL https://journals.nutrition.org
HJ https://jn.nutrition.org
HJ https://ajcn.nutrition.org
HJ https://advances.nutrition.org
HJ https://cdn.nutrition.org
DJ nutrition.org
# Updated per ralight 2024-03-20
Title Africa-Confidential (updated 20240312)
URL https://www.africa-confidential.com
HJ africa-confidential.com
HJ https://africa-confidential.com
HJ www.africa-confidential.com
DJ africa-confidential.com
# Updated per ralight 2025-12-10
Title Airiti Library (updated 20251205)
URL https://www.airitilibrary.com
HJ https://www.airitilibrary.com
HJ https://www.airitibooks.com
HJ https://www.airitiaci.com
HJ https://www.ainoscosearch.com
HJ www.airitibooks.com
HJ www.airitilibrary.com
HJ www.airitiaci.com
HJ www.ainoscosearch.com
DJ airitibooks.com
DJ airitilibrary.com
DJ airitiaci.com
DJ ainoscosearch.com
# Updated per ralight 2021-05-13
# Modified from OCLC stanza to include https
Title ALA Journals (updated 20210511)
URL https://journals.ala.org/
HJ http://journals.ala.org/
HJ journals.ala.org
# Extra host added for LLAMA
HJ https://www.llama.ala.org
DJ ala.org
# Updated to https per RAL 2019-04-08
Title AMA Manual of Style
URL https://www.amamanualofstyle.com
HJ https://www.amamanualofstyle.com
HJ https://amamanualofstyle.com
HJ http://www.amamanualofstyle.com
HJ www.amamanualofstyle.com
HJ amamanualofstyle.com
DJ amamanualofstyle.com
# Updated per RAL 2021-02-16
AnonymousURL +https://www.ambrosevideo.com/*
Title Ambrose Video Publishing (updated 20210212)
URL https://www.ambrosevideo.com
HJ https://videos.ambrosevideo.com
HJ https://api.ambrosevideo.com
HJ https://beta.ambrosevideo.com
HJ www.ambrosevideo.com
HJ ambrosevideo.com
HJ videos.ambrosevideo.com
HJ beta.ambrosevideo.com
HJ support.ambrosevideo.com
HJ api.ambrosevideo.com
DJ ambrosevideo.com
Find www.ambrosevideo.com
Replace ^Swww.ambrosevideo.com^
NeverProxy cfph.ambrosevideo.com
NeverProxy cfpr.ambrosevideo.com
NeverProxy cfsh.ambrosevideo.com
NeverProxy cfsr.ambrosevideo.com
AnonymousURL -*
# Updated per RAL 2025-09-22
Title American Archivist
URL https://american-archivist.kglmeridian.com/view/journals/aarc/aarc-overview.xml
HJ https://american-archivist.kglmeridian.com
HJ american-archivist.kglmeridian.com
HJ https://americanarchivist.org
HJ americanarchivist.org
DJ kglmeridian.com
DJ americanarchivist.org
# Updated per RAL 2020-09-04
# Modified from OCLC to include http host line
Title American Economic Association
HTTPHeader -request -process X-CSRF-Token
HTTPHeader -request -process X-Key
HTTPHeader -request -process X-Requested-With
URL https://www.aeaweb.org/
HJ aeaweb.org
HJ pubs.aeaweb.org
HJ www.aeaweb.org
HJ http://www.aeaweb.org/
DJ aeaweb.org
# Updated per ralight 2023-08-18
Title American Journal of Health Studies
URL https://www.amjhealthstudies.com/index.php/ajhs/issue/archive
HJ www.amjhealthstudies.com
DJ amjhealthstudies.com
# Updated per ralight 2025-07-18
# Combines OCLC stanzas for Weston Medical Publishing and American Journal of Recreation Therapy
Title American Journal of Recreation Therapy
URL https://wmpllc.org/
HJ http://www.recreationtherapy.org
HJ http://recreationtherapy.org
HJ http://wmpllc.org/
HJ https://recreationtherapy.org
HJ https://www.recreationtherapy.org
# Extra host added to reduce needhost errors
HJ https://www.wmpllc.org/
DJ wmpllc.org
DJ recreationtherapy.org
Find wmpllc.org
Replace ^swmpllc.org^
T American Mathematical Society Journals
URL http://www.ams.org
HJ www.ams.org
HJ www.mathjournals.org
DJ mathjournals.org
DJ ams.org
# Updated per ralight 2022-06-24
T American Meteorological Society (updated 20220621)
HTTPHeader -request -process X-Requested-With
URL http://journals.ametsoc.org
HJ ametsoc.org
HJ https://ametsoc.org
HJ https://ams-journals.ametsoc.org
HJ https://journals.ametsoc.org
HJ https://www.ametsoc.org
HJ journals.ametsoc.org
HJ www.ametsoc.org
DJ ams-journals.ametsoc.org
DJ ametsoc.org
# Updated per ralight 2026-01-13
Title American Phytopathological Society (updated 20191025)
URL https://apsjournals.apsnet.org/
HJ apsjournals.apsnet.org
HJ www.apsnet.org
HJ www.plantmanagementnetwork.org
DJ apsnet.org
DJ plantmanagementnetwork.org
# Updated per RAL 2020-09-04
Title American Public Health Association
URL http://ajph.aphapublications.org/
HJ ajph.aphapublications.org
HJ aphapublications.org
HJ https://ajph.aphapublications.org
HJ thenationshealth.aphapublications.org
HJ www.aphapublications.org
DJ aphapublications.org
# Updated per ralight 2021-06-24
Option DomainCookieOnly
Title American Society for Microbiology (updated 20210617)
URL https://journals.asm.org/
HJ aac.asm.org
HJ aem.asm.org
HJ asm.org
HJ cdli.asm.org
HJ cmr.asm.org
HJ cvi.asm.org
HJ ec.asm.org
HJ genomea.asm.org
HJ https://aac.asm.org
HJ https://aem.asm.org
HJ https://asm.org
HJ https://cmr.asm.org
HJ https://cvi.asm.org
HJ https://ec.asm.org
HJ https://iai.asm.org
HJ https://jb.asm.org
HJ https://jcm.asm.org
HJ https://journals.asm.org
HJ https://jvi.asm.org
HJ https://mbio.asm.org
HJ https://mcb.asm.org
HJ https://mmbr.asm.org
HJ https://mra.asm.org
HJ https://msphere.asm.org
HJ https://msystems.asm.org
HJ https://www.asm.org
HJ https://www.asmscience.org
HJ iai.asm.org
HJ intl-aac.asm.org
HJ intl-aem.asm.org
HJ intl-cmr.asm.org
HJ intl-cvi.asm.org
HJ intl-ec.asm.org
HJ intl-genomea.asm.org
HJ intl-iai.asm.org
HJ intl-jb.asm.org
HJ intl-jcm.asm.org
HJ intl-journals.asm.org
HJ intl-jvi.asm.org
HJ intl-mbio.asm.org
HJ intl-mcb.asm.org
HJ intl-msphere.asm.org
HJ intl-msystems.asm.org
HJ jb.asm.org
HJ jcm.asm.org
HJ journals.asm.org
HJ jvi.asm.org
HJ mbio.asm.org
HJ mcb.asm.org
HJ mmbr.asm.org
HJ mra.asm.org
HJ msphere.asm.org
HJ msystems.asm.org
HJ www.asm.org
HJ www.asmscience.org
HJ www.journals.asm.org
DJ asm.org
DJ asmscience.org
NeverProxy asm.metastore.ingenta.com
Option Cookie
# Updated per ralight 2026-01-13
Title American Society of Plant Biologists
URL https://aspb.org/publications/
HJ http://www.aspb.org
HJ www.plantcell.org
HJ www.plantphysiol.org
DJ plantcell.org
DJ aspb.org
DJ plantphysiol.org
# Updated per ralight 2022-12-20
T American Speech-Language-Hearing Association (ASHA) (updated 20221209)
HTTPHeader -request -process X-Requested-With
U http://www.asha.org/publications/
HJ https://www.asha.org/publications/
HJ accperspectives.pubs.asha.org
HJ aja.asha.org
HJ aja.pubs.asha.org
HJ ajslp.asha.org
HJ ajslp.pubs.asha.org
HJ asha.org
HJ https://accperspectives.pubs.asha.org
HJ https://aja.asha.org
HJ https://ajslp.asha.org
HJ https://asha.org
HJ https://journals.ashs.org
HJ https://jshd.asha.org
HJ https://jshd.pubs.asha.org
HJ https://jslhr.asha.org
HJ https://jslhr.pubs.asha.org
HJ https://lshss.asha.org
HJ https://on.asha.org
HJ https://perspectives.pubs.asha.org
HJ https://pubs.asha.org
HJ https://www.pubs.asha.org
HJ https://lshss.pubs.asha.org
HJ http://lshss.pubs.asha.org
HJ journals.pubs.asha.org
HJ jshd.asha.org
HJ jshd.pubs.asha.org
HJ jslhr.asha.org
HJ jslhr.pubs.asha.org
HJ leader.pubs.asha.org
HJ lshss.asha.org
HJ lshss.pubs.asha.org
HJ on.asha.org
HJ perspectives.pubs.asha.org
HJ pubs.asha.org
HJ sig10perspectives.pubs.asha.org
HJ sig11perspectives.pubs.asha.org
HJ sig12perspectives.pubs.asha.org
HJ sig13perspectives.pubs.asha.org
HJ sig14perspectives.pubs.asha.org
HJ sig15perspectives.pubs.asha.org
HJ sig16perspectives.pubs.asha.org
HJ sig1perspectives.pubs.asha.org
HJ sig2perspectives.pubs.asha.org
HJ sig3perspectives.pubs.asha.org
HJ sig4perspectives.pubs.asha.org
HJ sig5perspectives.pubs.asha.org
HJ sig6perspectives.pubs.asha.org
HJ sig7perspectives.pubs.asha.org
HJ sig8perspectives.pubs.asha.org
HJ sig9perspectives.pubs.asha.org
HJ takeaction.asha.org
HJ www.asha.org
HJ www.pubs.asha.org
DJ asha.org
# Added per ralight 2021-07-21
Title Amsterdam University Press
URL https://www.aup.nl/en/journal
HJ https://www.aup-online.com/
HJ www.aup-online.com
HJ www.aup.nl
DJ aup.nl
DJ aup-online.com
# Updated per ralight 2025-07-14
# Replaces separate stanzas for Collection of Chinese Rare Medicine Books in Overseas and Zhonghua jing dian gu ji ku
# Stanza previously called Ancient Books
Title JiHeWang
HTTPHeader -request -process siteid
HTTPHeader -request -process x-requested-with
URL https://www.ancientbooks.cn
HJ https://publish.ancientbooks.cn
HJ https://jingdian.ancientbooks.cn
HJ https://p.docj.cn
HJ publish.ancientbooks.cn
DJ ancientbooks.cn
# Updated per ralight 2026-01-13
Title Annali della Scuola Normale Superiore di Pisa, Classe di Scienze
URL https://journals.sns.it/index.php/annaliscienze/
HJ http://annaliscienze.sns.it
HJ annaliscienze.sns.it
HJ journals.sns.it
DJ sns.it
# Updated per RAL 2021-02-04
Title Annals of Mathematics
URL https://annals.math.princeton.edu/
HJ http://annals.math.princeton.edu
HJ annals.math.princeton.edu
DJ princeton.edu
# Updated per ralight 2021-12-22
Title Annual Reviews (updated 20211214)
URL https://www.annualreviews.org/
HJ anchem.annualreviews.org
HJ animal.annualreviews.org
HJ annualreviews.org
HJ anthro.annualreviews.org
HJ arcompsci.annualreviews.org
HJ arjournals.annualreviews.org
HJ arplant.annualreviews.org
HJ astro.annualreviews.org
HJ biochem.annualreviews.org
HJ biodatasci.annualreviews.org
HJ bioeng.annualreviews.org
HJ biophys.annualreviews.org
HJ cancerbio.annualreviews.org
HJ cellbio.annualreviews.org
HJ chembioeng.annualreviews.org
HJ clinpsy.annualreviews.org
HJ conmatphys.annualreviews.org
HJ control.annualreviews.org
HJ criminol.annualreviews.org
HJ devpsych.annualreviews.org
HJ earth.annualreviews.org
HJ ecolsys.annualreviews.org
HJ economics.annualreviews.org
HJ energy.annualreviews.org
HJ ento.annualreviews.org
HJ financial.annualreviews.org
HJ fluid.annualreviews.org
HJ food.annualreviews.org
HJ genet.annualreviews.org
HJ genom.annualreviews.org
HJ http://www.annualreviews.org
HJ https://annualreviews.org
HJ https://arplant.annualreviews.org
HJ immunol.annualreviews.org
HJ knowablemagazine.org
HJ lawsocsci.annualreviews.org
HJ linguistics.annualreviews.org
HJ marine.annualreviews.org
HJ matsci.annualreviews.org
HJ med.annualreviews.org
HJ micro.annualreviews.org
HJ neuro.annualreviews.org
HJ nucl.annualreviews.org
HJ nutr.annualreviews.org
HJ orgpsych.annualreviews.org
HJ pathmechdis.annualreviews.org
HJ pharmtox.annualreviews.org
HJ physchem.annualreviews.org
HJ physiol.annualreviews.org
HJ phyto.annualreviews.org
HJ plant.annualreviews.org
HJ polisci.annualreviews.org
HJ psych.annualreviews.org
HJ publhealth.annualreviews.org
HJ resource.annualreviews.org
HJ soc.annualreviews.org
HJ statistics.annualreviews.org
HJ virology.annualreviews.org
HJ vision.annualreviews.org
HJ www.annualreviews.org
DJ annualreviews.org
DJ knowablemagazine.org
# Updated per ralight 2022-07-21
Title Schweizerbart/Borntraeger Journals, Stuttgart (updated 20220718)
URL https://www.schweizerbart.de
HJ https://www.schweizerbart.de
HJ www.schweizerbart.de
HJ schweizerbart.de
HJ https://schweizerbart.de
HJ http://www.schweizerbart.com
HJ www.schweizerbart.com
HJ https://schweizerbart.com
HJ schweizerbart.com
DJ schweizerbart.de
DJ schweizerbart.com
# Updated per ralight 2025-07-29
# Changed to Newsroom portion to NeverProxy directive based on information from EZproxy listserv
# Additional changes per EBSCO support to change fully to NeverProxy and remove all other elements of stanza.
Title AP Newsroom
NeverProxy newsroom.ap.org
# Updated per ralight 2024-04-17
Title The Arabidopsis Information Resource (updated 20240416)
URL https://www.arabidopsis.org/
HJ api.arabidopsis.org
HJ arabidopsis.org
HJ data.arabidopsis.org
HJ gbrowse.arabidopsis.org
HJ https://api.arabidopsis.org
HJ https://arabidopsis.org
HJ https://data.arabidopsis.org
HJ https://gbrowse.arabidopsis.org
HJ https://jbrowse.arabidopsis.org
HJ https://jbrowse2.arabidopsis.org
HJ https://phylogenes-api.arabidopsis.org
HJ https://phylogenes-data.arabidopsis.org
HJ https://phylogenes.arabidopsis.org
HJ https://seqviewer.arabidopsis.org
HJ https://www.arabidopsis.org
HJ jbrowse.arabidopsis.org
HJ jbrowse2.arabidopsis.org
HJ phylogenes-api.arabidopsis.org
HJ phylogenes-data.arabidopsis.org
HJ phylogenes.arabidopsis.org
HJ seqviewer.arabidopsis.org
HJ www.arabidopsis.org
DJ arabidopsis.org
# Added per RAL 2020-08-21
# Elsevier title with access on native platform
Title Archives of Physical Medicine and Rehabilitation
URL https://www.archives-pmr.org/
HJ www.archives-pmr.org
DJ archives-pmr.org
# Updated per ralight 2024-09-05
Title ARL Publications
URL https://www.arl.org
HJ https://publications.arl.org
HJ https://www.arlstatistics.org
HJ http://www.arl.org
HJ http://www.arlstatistics.org
HJ arlstatistics.org
HJ http://publications.arl.org
DJ arl.org
DJ arlstatistics.org
# Updated per ralight 2024-03-13
Title Armand Colin Revues (updated 20240311)
URL https://www.revues.armand-colin.com
HJ https://www.revues.armand-colin.com
HJ https://revues.armand-colin.com
HJ http://www.revues.armand-colin.com
HJ http://revues.armand-colin.com
DJ armand-colin.com
Find http://www.revues.armand-colin.com
Replace https://www.revues.armand-colin.com
# added per CWL 03-13-23
Title Art Song Transpositions
URL https://astpublications.com
HJ https://artsongtranspositions.com
HJ http://artsongtranspositions.com
HJ http://astpublications.com
DJ astpublications.com
DJ artsongtranspositions.com
# Updated per ralight 2026-01-13
Title Arte lombarda
URL https://artelombarda.vitaepensiero.it/
HJ http://artelombarda.vitaepensiero.it
DJ vitaepensiero.it
# updated per cwl 2020-04-22
Title ARTFL Project, University of Chicago
URL https://artfl-project.uchicago.edu/
HJ artfl-project.uchicago.edu
HJ http://artfl-project.uchicago.edu/
HJ artflsrv01.uchicago.edu
HJ artflsrv02.uchicago.edu
HJ artflsrv03.uchicago.edu
HJ artfl.uchicago.edu
HJ artflx.uchicago.edu
HJ http://artflsrv03.uchicago.edu
HJ https://artflsrv03.uchicago.edu
DJ uchicago.edu
DJ artfl-project.uchicago.edu
# Updated per RAL 2021-01-19
Title Art History Research net
URL https://www.arthistoryresearch.net/database/index.php
HJ http://www.arthistoryresearch.net
HJ www.arthistoryresearch.net
HJ arthistoryresearch.net
DJ arthistoryresearch.net
# Updated per ralight 2021-10-28
Title ASPET Journals Online (updated 20211025)
URL http://www.aspetjournals.org/
HJ aspet.org HJ aspetjournals.org
HJ dmd.aspetjournals.org
HJ https://aspet.org
HJ https://aspetjournals.org
HJ https://dmd.aspetjournals.org
HJ https://jpet.aspetjournals.org
HJ https://molpharm.aspetjournals.org
HJ https://pharmrev.aspetjournals.org
HJ https://www.aspet.org
HJ intl-molpharm.aspetjournals.org
HJ jpet.aspetjournals.org
HJ molpharm.aspetjournals.org