~ubuntu-branches/debian/squeeze/pygments/squeeze

« back to all changes in this revision

Viewing changes to tests/examplefiles/squid.conf

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2009-09-13 10:13:17 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090913101317-2w7g3lf43pginyc7
Tags: 1.1.1+dfsg-1
* New upstream release
  - upstream tarball repackaged: tests/examplefiles removed (at least one
    of example files is not DFSG-free and I'm too lazy to review the rest
    as most of them have different copyright holder and license),
    get-orig-source target added, debian/watch file updated
* use_jinja2_to_generate_docs patch removed (incorporated upstream)
* disable_ez_setup.patch no longer needed
* make_utf8_default.patch updated
* debian/copyright file updated
* Standards-Version bumped to 3.8.3 (no changes needed)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# First, a comment block for the deafult conf:
2
 
 
3
 
#  TAG: buffered_logs   on|off
4
 
#       cache.log log file is written with stdio functions, and as such
5
 
#       it can be buffered or unbuffered. By default it will be unbuffered.
6
 
#       Buffering it can speed up the writing slightly (though you are
7
 
#       unlikely to need to worry unless you run with tons of debugging
8
 
#       enabled in which case performance will suffer badly anyway..).
9
 
#
10
 
#Default:
11
 
# buffered_logs off
12
 
 
13
 
# Now, a slightly useful (but in no way complete) set of options:
14
 
 
15
 
cache_peer upstream1.example.com parent 8080 0 no-query proxy-only round-robin
16
 
cache_peer upstream2.example.com parent 3128 0 no-query proxy-only round-robin
17
 
never_direct allow all
18
 
never_direct allow CONNECT
19
 
 
20
 
acl myclients src 127.0.0.1
21
 
http_access allow myclients
22
 
 
23
 
acl mynet src 192.168.0.0/255.255.0.0
24
 
no_cache deny mynet
25
 
 
26
 
acl mynetlocal dst 192.168.0.0/255.255.0.0
27
 
always_direct allow mynetlocal