From ef334699c957b3a8832c2329ac3d666c572eea2c Mon Sep 17 00:00:00 2001 From: Biagio Peccerillo Date: Wed, 26 Feb 2025 15:44:03 +0100 Subject: [PATCH] PAC file --- proxy-isti.pac | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 proxy-isti.pac diff --git a/proxy-isti.pac b/proxy-isti.pac new file mode 100644 index 0000000..d67f1c7 --- /dev/null +++ b/proxy-isti.pac @@ -0,0 +1,54 @@ +const site_vector = [ + /* IEEE */ "https://ieeexplore.ieee.org/*", + /* ACM */ "https://dl.acm.org/*", + /* SPRINGER */ "https://link.springer.com/*", + /* SCIENCE_DIRECT */ "https://www.sciencedirect.com/*", + /* WEB_OF_SCIENCE */ "https://www.webofknowledge.com/*", + /* WILEY */ "https://onlinelibrary.wiley.com/*", + /* NATURE */ "https://www.nature.com/*", + /* SAGE */ "https://journals.sagepub.com/*", + /* TAYLOR_FRANCIS */ "https://www.tandfonline.com/*", + /* MDPI */ "https://www.mdpi.com/*", + /* FRONTIERS */ "https://www.frontiersin.org/*", + /* MATH SCI NET */ "https://mathscinet.ams.org/*", + /* REAXYS */ "https://www.reaxys.com/*", + /* OXFORD */ "https://academic.oup.com/*", + /* PNAS */ "https://www.pnas.org/*", + /* CAMBRIDGE */ "https://www.cambridge.org/*", + /* IOP */ "https://iopscience.iop.org/*", + /* IOS */ "https://content.iospress.org/*", + /* JSTOR */ "https://www.jstor.org/*", + /* RSC */ "https://pubs.rsc.org/*", + /* CHEM SPIDER */ "https://www.chemspider.com/*", + /* CLARIVATE */ "https://jcr.clarivate.com/*", + /* CLARIVATE ENDNOTE */ "https://www.myendnoteweb.com/*", + /* SCIENTIFIC NET */ "https://www.scientific.net/*", + /* AIP */ "https://aip.scitation.org/*", + /* APS */ "https://journals.aps.org/*", + /* PUBMED */ "https://pubmed.ncbi.nlm.nih.gov/*", + /* SCIENCEMAG */ "https://www.sciencemag.org/*", + /* SIAM */ "https://epubs.siam.org/*", + /* AMERICAN_CHEMICAL */ "https://pubs.acs.org/*", + /* AMERICAN_PHYSICAL */ "https://journals.aps.org/*", + /* AMERICAN_PHYSICS */ "https://www.scitation.org/*", + /* AMERICAN_SOCIETY */ "https://www.asme.org/*", + /* AMERICAN_INSTITUTE */ "https://www.aiaa.org/*", + /* AMERICAN_MATHEMATICAL */ "https://www.ams.org/*", + /* AMERICAN_METEO */ "https://journals.ametsoc.org/*", + /* AMERICAN_GEOPHYSICAL */ "https://www.agu.org/*", + /* ANNUAL_REVIEWS */ "https://www.annualreviews.org/*", + /* RIVISTE WEB */ "https://www.rivisteweb.it/*", + /* DARWIN BOOKS */ "https://www.darwinbooks.it/*", +]; + +function FindProxyForURL(url, host) { + // Check if the requested URL is a paper repo + for (var i = 0; i < site_vector.length; i++) { + if (shExpMatch(url, site_vector[i])) { + return "PROXY vpn-proxy.isti.cnr.it:3128"; + } + } + + // Default to direct connection for all other URLs + return "DIRECT"; +}