
Platonides at gmail
Jul 3, 2009, 8:26 AM
Post #2 of 2
(183 views)
Permalink
|
Brion Vibber wrote: > (If your DNS is still seeing the old entries, you can manually configure > your browser to use the US proxy: rr.pmtpa.wikimedia.org port 80. You > should only do this temporarily, as you won’t be able to access anything > *but* Wikipedia and our sister projects. :) Since accessing Wikipedia only isn't too nice, for future outages a pac file can be used: function FindProxyForURL(url, host) { //Not using shExpMatch to avoid kb274204 var regex = /\.wik(i((m|p)edia|books|quote|news|source|versity)|tionary)\.org/; if(regexpr.test(host)) return "PROXY rr.pmtpa.wikimedia.org:80"; return "DIRECT"; } _______________________________________________ Wikitech-l mailing list Wikitech-l[at]lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/wikitech-l
|