diff options
author | Michael Adam <obnox@samba.org> | 2009-09-28 11:07:37 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-09-28 11:24:34 +0200 |
commit | f1e5360ef1a79ca21514ece682b7a8bb1795dd5a (patch) | |
tree | 71f2e616a1bfd0e50618de0e4cea46c4b9fe4e07 /docs/man5 | |
parent | 33872928d56d8dd8b38372080eb8cc9e41a55453 (diff) | |
download | tinyproxy-f1e5360ef1a79ca21514ece682b7a8bb1795dd5a.tar.gz tinyproxy-f1e5360ef1a79ca21514ece682b7a8bb1795dd5a.zip |
docs: document the filtering options in tinyproxy.conf(5)
Diffstat (limited to 'docs/man5')
-rw-r--r-- | docs/man5/tinyproxy.conf.txt.in | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/man5/tinyproxy.conf.txt.in b/docs/man5/tinyproxy.conf.txt.in index c973b1f..01f6ef7 100644 --- a/docs/man5/tinyproxy.conf.txt.in +++ b/docs/man5/tinyproxy.conf.txt.in @@ -221,6 +221,37 @@ The possible keywords and their descriptions are as follows: string value will be used as the host name in the Via header. Otherwise, the server's host name will be used. +*Filter*:: + + Tinyproxy supports filtering of web sites based on URLs or + domains. This option specifies the location of the file + containing the filter rules, one rule per line. + +*FilterURLs*:: + + If this boolean option is set to `Yes` or `On`, filtering is + performed for URLs rather than for domains. The default is to + filter based on domains. + +*FilterExtended*:: + + If this boolean option is set to `Yes`, then extended POSIX + regular expressions are used for matching the filter rules. + The default is to use basic POSIX regular expressions. + +*FilterCaseSensitive*:: + + If this boolean option is set to `Yes`, then the filter rules + are matched in a case sensitive manner. The default is to + match case-insensitively. + +*FilterDefaultDeny*:: + + The default filtering policy is to allow everything that is + not matched by a filtering rule. Setting `FilterDefaultDeny` + to `Yes` changes the policy do deny everything but the domains + or URLs matched by the filtering rules. + BUGS ---- |