> From: Robert Becskei [mailto:[EMAIL PROTECTED]
> Hello,
>
> with the help of the people at this mailing list I managed to
> configure my
> proxy server so that there is a master
> user who can do anything, and there is normal internet user who can only
> browse and download a few types of files.
>
> my problem is :
>
> redirect_program /usr/bin/squidGuard
> redirect_children 4
>
> is there a way to never redirect master user ? so he can browse porn
> sites...?
Let SquidGuard do this.
Set up an ACL and rule in SquidGuard along the lines of:
acl {
master {
pass any
}
normal {
pass !porn !whateverelse any
redirect http://<somesite.com>/
}
}
This will allow master to go anywhere but normal to go anywhere except porn
and whateverelse.