~ps10gel/ubuntu/xenial/trafficserver/6.2.0

« back to all changes in this revision

Viewing changes to proxy/config/records.config.default.in

  • Committer: Package Import Robot
  • Author(s): Aron Xu
  • Date: 2013-05-09 01:00:04 UTC
  • mto: (1.1.11) (5.3.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: package-import@ubuntu.com-20130509010004-9fqq9n0adseg3f8w
Tags: upstream-3.3.2
ImportĀ upstreamĀ versionĀ 3.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
   # tr-in - Transparent inbound.
88
88
   # tr-out - Transparent outbound.
89
89
   # tr-full - Fully transparent (inbound and outbound).
 
90
   # tr-pass - Transprently Pass-through non-HTTP traffic (in conjuction with tr-in).
90
91
   # ssl - SSL terminated port.
91
92
   # blind - Blind tunnel port.
92
93
   # ip-in=[addr] - Bind inbound IP address (listen for client).
217
218
   # cache control #
218
219
   #################
219
220
CONFIG proxy.config.http.cache.http INT 1
 
221
   # Enabling this setting allows the proxy to cache empty documents. This currently
 
222
   # requires that the response has a Content-Length: header, with a value of "0".
 
223
CONFIG proxy.config.http.cache.allow_empty_doc INT 0
220
224
CONFIG proxy.config.http.cache.ignore_client_no_cache INT 1
221
225
CONFIG proxy.config.http.cache.ims_on_client_no_cache INT 1
222
226
CONFIG proxy.config.http.cache.ignore_server_no_cache INT 0
392
396
   # note that in order to increase hostdb.size, hostdb.storage_size should
393
397
   # also be increase. These are best guesses, you will have to monitor this.
394
398
CONFIG proxy.config.hostdb.size INT 120000
395
 
CONFIG proxy.config.hostdb.storage_size INT 32M
 
399
CONFIG proxy.config.hostdb.storage_size INT 200M
396
400
   # ttl modes:
397
401
   #   0 = obey
398
402
   #   1 = ignore
596
600
 
597
601
##############################################################################
598
602
#
 
603
# Configuration for Reclaimable InkFreeList memory pool
 
604
#
 
605
# NOTE: The following options are not meaningful unless compiles TrafficServer
 
606
#       with '--enable-reclaimable-freelist' option. Looks like:
 
607
#       $ ./configure --enable-reclaimable-freelist
 
608
#
 
609
##############################################################################
 
610
  # Dump debug information according bit mask of debug_filter, if a bit is set
 
611
  # in the mask, then debug information of the corresponding action are dumped:
 
612
  #  bit 0: reclaim memory in ink_freelist_new
 
613
  #  bit 1: allocate memory from partial-free Chunks(if exist) or OS
 
614
CONFIG proxy.config.allocator.debug_filter INT 0
 
615
  # The value of enable_reclaim should be 0 or 1. Default 0, reclaim disabled.
 
616
CONFIG proxy.config.allocator.enable_reclaim INT 0
 
617
  # The value of reclaim_factor should be in 0.0 ~ 1.0, allocator use it to
 
618
  # calculate average value of idle memory in InkFreeList, which will determine
 
619
  # when to reclaim memory. The larger the value, the faster the reclaiming.
 
620
  # This value is effective only when enable_reclaim is 1.
 
621
CONFIG proxy.config.allocator.reclaim_factor FLOAT 0.300000
 
622
  # Allocator will reclaim memory only when it continuously satisfy the reclaim
 
623
  # condition for max_overage times. This value is effective only when
 
624
  # enable_reclaim is 1.
 
625
CONFIG proxy.config.allocator.max_overage INT 3
 
626
 
 
627
##############################################################################
 
628
#
599
629
# Slow Log
600
630
#
601
631
##############################################################################