> simonk wrote:
>>
>> My employers have improved the web filter to remove access to google
>> groups, amongst other sites[1]. Lord only knows why.
>>
>> Anyway, I intend to rectify this by, hopefully, installing some sort of
>> PHP/Apache-based web access to Usenet of my own, ideally on my little
>> Linksys
>> NSLU2 at home, so I can just https: to my ADSL IP address and post away.
>>
> Presumably youre running Apache at home? If so, just set up a new
> virtualhost with the following (you need mod rewrite and mod proxy
> available)
>
> RewriteEngine On
> RewriteRule ^/(.*)
http://groups.google.co.uk/$1 [P,L]
> ProxyPassReverse /
http://groups.google.co.uk/
>
> Then you just point the browser at
http://your.new.virtualhost/ and as
> far as the filters concerned, you havent gone anywhere near Google at
> all. If someone cottons on (unlikely) you can just change the hostname.
>
> I used the same trick to give the Blane access to news.bbc.co.uk yonks
> ago, it works a treat so long as the filtering is hostname/ip based.
Aha...
up a slimmed-down version and give it a whirl. Cheers.