The records.config file is a list of configurable variables used by the Traffic Server software. Many of the variables in the records.config file are set automatically when you set configuration options in Traffic Line or Traffic Shell. After you modify the records.config file, run the command traffic_line -x to apply the changes. When you apply changes to one node in a cluster, Traffic Server automatically applies the changes to all other nodes in the cluster.
Each variable has the following format:
SCOPE variable_name DATATYPE variable_value
where
SCOPE is related to clustering and is either CONFIG (all members of the cluster) or LOCAL (only the local machine)
DATATYPE is one of INT (integer), STRING (string), FLOAT (floating point).
A variable marked as Deprecated is still functional but should be avoided as it may be removed in a future release without warning.
A variable marked as Reloadable can be updated via the command:
traffic_line -x
In the following example, the variable proxy.config.proxy_name is a STRING datatype with the value my_server. This means that the name of the Traffic Server proxy is my_server.
CONFIG proxy.config.proxy_name STRING my_server
If the server name should be that_server the line would be
CONFIG proxy.config.proxy_name STRING that_server
In the following example, the variable proxy.config.arm.enabled is a yes/no flag. A value of 0 (zero) disables the option; a value of 1 enables the option.
CONFIG proxy.config.arm.enabled INT 0
In the following example, the variable sets the cluster startup timeout to 10 seconds.
CONFIG proxy.config.cluster.startup_timeout INT 10
Every records.config configuration variable can be overridden by a corresponding environment variable. This can be useful in situations where you need a static records.config but still want to tweak one or two settings. The override variable is formed by converting the records.config variable name to upper case, and replacing any dot separators with an underscore.
Overriding a variable from the environment is permanent and will not be affected by future configuration changes made in records.config or applied with traffic_line.
For example, we could override the proxy.config.product_company variable like this:
$ PROXY_CONFIG_PRODUCT_COMPANY=example traffic_cop &
$ traffic_line -r proxy.config.product_company
The following list describes the configuration variables available in the records.config file.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | Apache Software Foundation |
The name of the organization developing Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | Apache |
The name of the vendor providing Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | Traffic Server |
The name of the product.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | ``build_machine`` |
| Reloadable: | Yes |
The name of the Traffic Server node.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | bin |
The location of the Traffic Server bin directory.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | traffic_server |
The name of the executable that runs the traffic_server process.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | -M |
The command-line options for starting Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | traffic_manager |
The name of the executable that runs the traffic_manager process.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | *NONE* |
The script executed before the traffic_manager process spawns the traffic_server process.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | config |
The directory that contains Traffic Server configuration files.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | *NONE* |
| Reloadable: | Yes |
The email address to which Traffic Server sends alarm messages.
During a custom Traffic Server installation, you can specify the email address; otherwise, Traffic Server uses the Traffic Server user account name as the default value for this variable.
proxy.config.syslog_facility| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | LOG_DAEMON |
The facility used to record system log files. Refer to Understanding Traffic Server Log Files.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
The signal sent to traffic_cop‘s managed processes to stop them.
A value of 0 means no signal will be sent.
proxy.config.cop.linux_min_swapfree_kb| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10240 |
The minimum amount of free swap space allowed before Traffic Server stops the traffic_server and traffic_manager processes to prevent the system from hanging. This configuration variable applies if swap is enabled in Linux 2.2 only.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | traffic.out |
The name and location of the file that contains warnings, status messages, and error messages produced by the Traffic Server processes. If no path is specified, then Traffic Server creates the file in its logging directory.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | snapshots |
The directory in which Traffic Server stores configuration snapshots on the local system. Unless you specify an absolute path, this directory is located in the Traffic Server config directory.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
When enabled (the default, 1), Traffic Server scales threads according to the available CPU cores. See the config option below.
| Scope: | CONFIG |
|---|---|
| Type: | FLOAT |
| Default: | 1.5 |
Factor by which Traffic Server scales the number of threads. The multiplier is usually the number of available CPU cores. By default this is scaling factor is 1.5.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2 |
XXX What does this do?
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
When enabled (1), runs a separate thread for accept processing. If disabled (0), then only 1 thread can be created.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1096908 |
The new default thread stack size, for all threads. The original default is set at 1 MB.
| Scope: | LOCAL |
|---|---|
| Type: | STRING |
| Default: | 0.0.0.0 :: |
Controls the global default IP addresses to which to bind proxy server ports. The value is a space separated list of IP addresses, one per supported IP address family (currently IPv4 and IPv6).
Unless explicitly specified in proxy.config.http.server_ports the server port will be bound to one of these addresses, selected by IP address family. The built in default is any address. This is used if no address for a family is specified. This setting is useful if most or all server ports should be bound to the same address.
Note
This is ignored for inbound transparent server ports because they must be able to accept connections on arbitrary IP addresses.
Example
Set the global default for IPv4 to 192.168.101.18 and leave the global default for IPv6 as any address.:
LOCAL proxy.local.incoming_ip_to_bind STRING 192.168.101.18
Example
Set the global default for IPv4 to 191.68.101.18 and the global default for IPv6 to fc07:192:168:101::17.:
LOCAL proxy.local.incoming_ip_to_bind STRING 192.168.101.18 fc07:192:168:101::17
| Scope: | LOCAL |
|---|---|
| Type: | STRING |
| Default: | 0.0.0.0 :: |
This controls the global default for the local IP address for outbound connections to origin servers. The value is a list of space separated IP addresses, one per supported IP address family (currently IPv4 and IPv6).
Unless explicitly specified in proxy.config.http.server_ports one of these addresses, selected by IP address family, will be used as the local address for outbound connections. This setting is useful if most or all of the server ports should use the same outbound IP addresses.
Note
This is ignore for outbound transparent ports as the local outbound address will be the same as the client local address.
Example
Set the default local outbound IP address for IPv4 connectionsn to 192.168.101.18.:
LOCAL proxy.local.outgoing_ip_to_bind STRING 192.168.101.18
Example
Set the default local outbound IP address to 192.168.101.17 for IPv4 and fc07:192:168:101::17 for IPv6.:
LOCAL proxy.local.outgoing_ip_to_bind STRING 192.168.101.17 fc07:192:168:101::17
| Scope: | LOCAL |
|---|---|
| Type: | INT |
| Default: | 3 |
Sets the clustering mode:
| Value | Effect |
|---|---|
| 1 | full-clustering mode |
| 2 | management-only mode |
| 3 | no clustering |
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 8088 |
The reliable service port. The reliable service port is used to send configuration information between the nodes in a cluster. All nodes in a cluster must use the same reliable service port.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
The number of threads for cluster communication. On heavy cluster, the number should be adjusted. It is recommend that take the thread CPU usage as a reference when adjusting.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 11452 |
The semaphore ID for the local manager.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 8083 |
The autoconfiguration port.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 3 |
The maximum number of copies of rolled configuration files to keep.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | nobody |
Option used to specify who to run the traffic_server process as; also used to specify ownership of config and log files.
The nonprivileged user account designated to Traffic Server.
As of version 2.1.1 if the user_id is prefixed with pound character (#) the remaining of the string is considered to be numeric user identifier <http://en.wikipedia.org/wiki/User_identifier>``_. If the value is set to ``#-1 Traffic Server will not change the user during startup.
Setting user_id to root or #0 is now forbidden to increase security. Trying to do so, will cause the traffic_server fatal failure. However there are two ways to bypass that restriction: Specify -DBIG_SECURITY_HOLE in CXXFLAGS during compilation. Set the user_id=#-1 and start trafficserver as root.
| Scope: | CONFIOG |
|---|---|
| Type: | INT |
| Default: | 8084 |
The port used for internal communication between the traffic_manager and traffic_server processes.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | example_alarm_bin.sh |
Name of the script file that can execute certain actions when an alarm is signaled. The default file is a sample script named example_alarm_bin.sh located in the bin directory. You must dit the script to suit your needs.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
The full path to the script file that sends email to alert someone bout Traffic Server problems.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | 8080 |
Ports used for proxying HTTP traffic.
This is a list, separated by space or comma, of port descriptors. Each descriptor is a sequence of keywords and values separated by colons. Not all keywords have values, those that do are specifically noted. Keywords with values can have an optional ‘=’ character separating the keyword and value. The case of keywords is ignored. The order of keywords is irrelevant but unspecified results may occur if incompatible options are used (noted below). Options without values are idempotent. Options with values use the last (right most) value specified, except for ip-out as detailed later.
Quick reference chart.
| Name | Note | Definition |
|---|---|---|
| number | Required | The local port. |
| ipv4 | Default | Bind to IPv4 address family. |
| ipv6 | Bind to IPv6 address family. | |
| tr-in | Inbound transparent. | |
| tr-out | Outbound transparent. | |
| tr-full | Fully transparent (inbound and outbound) | |
| tr-pass | Pass through enabled. | |
| ssl | SSL terminated. | |
| ip-in | Value | Local inbound IP address. |
| ip-out | Value | Local outbound IP address. |
| ip-resolve | Value | IP address resolution style. |
| blind | Blind (CONNECT) port. | |
| compress | N/I | Compressed. Not implemented. |
Inbound transparent. The proxy port will accept connections to any IP address on the port. To have IPv6 inbound transparent you must use this and the ipv6 option. This overrides proxy.local.incoming_ip_to_bind.
Not compatible with: ip-in, ssl, blind
Outbound transparent. If ATS connects to an origin server for a transaction on this port, it will use the client’s address as its local address. This overrides proxy.local.outgoing_ip_to_bind.
Not compatible with: ip-out, ssl
Fully transparent. This is a convenience option and is identical to specifying both tr-in and tr-out.
Not compatible with: Any option not compatible with tr-in or tr-out.
Set the local IP address for the port. This is the address to which clients will connect. This forces the IP address family for the port. The ipv4 or ipv6 can be used but it is optional and is an error for it to disagree with the IP address family of this value. An IPv6 address must be enclosed in square brackets. If this is omitted proxy.local.incoming_ip_to_bind is used.
Not compatible with: tr-in.
Set the local IP address for outbound connections. This is the address used by ATS locally when it connects to an origin server for transactions on this port. If this is omitted proxy.local.outgoing_ip_to_bind is used.
This option can used multiple times, once for each IP address family. The address used is selected by the IP address family of the origin server address.
Not compatible with: tr-out.
Require SSL termination for inbound connections. SSL must be configured for this option to provide a functional server port.
Not compatible with: tr-in, tr-out, blind.
Accept only CONNECT transactions on this port.
Not compatible with: tr-in, ssl.
Example
Listen on port 80 on any address for IPv4 and IPv6.:
80 80:ipv6
Example
Listen transparently on any IPv4 address on port 8080, and transparently on port 8080 on local address fc01:10:10:1::1 (which implies ipv6).:
IPv4:tr-FULL:8080 TR-full:IP-in=[fc02:10:10:1::1]:8080
Example
Listen on port 8080 for IPv6, fully transparent. Set up an SSL port on 443. These ports will use the IP address from proxy.local.incoming_ip_to_bind. Listen on IP address 192.168.17.1, port 80, IPv4, and connect to origin servers using the local address 10.10.10.1 for IPv4 and fc01:10:10:1::1 for IPv6.:
8080:ipv6:tr-full 443:ssl ip-in=192.168.17.1:80:ip-out=[fc01:10:10:1::1]:ip-out=10.10.10.1
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | 443 563 |
The range of origin server ports that can be used for tunneling via CONNECT.
Traffic Server allows tunnels only to the specified ports. Supports both wildcards (‘*’) and ranges (“0-1023”).
Note
These are the ports on the origin server, not server ports.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Set how the Via field is handled on a request to the origin server.
| Value | Effect |
|---|---|
| 0 | no extra information is added to the string. |
| 1 | all extra information is added. |
| 2 | some extra information is added. |
Note
the Via header string interpretation can be decoded here.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Set how the Via field is handled on the response to the client.
| Value | Effect |
|---|---|
| 0 | no extra information is added to the string. |
| 1 | all extra information is added. |
| 2 | some extra information is added. |
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
You can specify one of the following:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
This option specifies whether Traffic Server should insert an Age header in the response. The Age field value is the cache’s estimate of the amount of time since the response was generated or revalidated by the origin server.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | ATS/ |
| Reloadable: | Yes |
The Server: string that ATS will insert in a response header (if requested, see above). Note that the current version number is always appended to this string.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) .com domain expansion. This configures the Traffic Server to resolve unqualified hostnames by prepending with www. and appending with .com before redirecting to the expanded address. For example: if a client makes a request to host, then Traffic Server redirects the request to www.host.com.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Specifies whether Traffic Sever can generate a chunked response:
Note: If HTTP/1.1 is used, then Traffic Server can use keep-alive connections with pipelining to origin servers. If HTTP/0.9 is used, then Traffic Server does not use keep-alive connections to origin servers. If HTTP/1.0 is used, then Traffic Server can use keep-alive connections without pipelining to origin servers.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
Enables (1) or disables (0) the reuse of server sessions.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) traffic_cop heartbeat ogging.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
For fully transparent ports use the same origin server address as the client.
This option causes Traffic Server to avoid where possible doing DNS lookups in forward transparent proxy mode. The option is only effective if the following three conditions are true -
If any of these conditions are not true, then normal DNS processing is done for the connection.
If all of these conditions are met, then the origin server IP address is retrieved from the original client connection, rather than through HostDB or DNS lookup. In effect, client DNS resolution is used instead of Traffic Server DNS.
This can be used to be a little more efficient (looking up the target once by the client rather than by both the client and Traffic Server) but the primary use is when client DNS resolution can differ from that of Traffic Server. Two known uses cases are:
This solution must be considered interim. In the longer term, it should be possible to arrange for much finer grained control of DNS lookup so that wildcard domain can be set to use Traffic Server or client resolution. In both known use cases, marking specific domains as client determined (rather than a single global switch) would suffice. It is possible to do this crudely with this flag by enabling it and then use identity URL mappings to re-disable it for specific domains.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) the parent caching option. Refer to Hierarchical Caching <../hierachical-caching>_.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 300 |
| Reloadable: | Yes |
The amount of time allowed between connection retries to a parent cache that is unavailable.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
The number of times the connection to the parent cache can fail before Traffic Server considers the parent unavailable.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 4 |
| Reloadable: | Yes |
The total number of connection attempts allowed to a parent cache before Traffic Server bypasses the parent or fails the request (depending on the go_direct option in the bypass.config file).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2 |
| Reloadable: | Yes |
The total number of connection attempts allowed per parent, if multiple parents are used.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 30 |
| Reloadable: | Yes |
The timeout value (in seconds) for parent cache connection attempts.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Configures Traffic Server to send proxy authentication headers on to the parent cache.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
Specifies how long Traffic Server keeps connections to clients open for a subsequent request after a transaction ends.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
Specifies how long Traffic Server keeps connections to origin servers open for a subsequent transfer of data after a transaction ends.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 120 |
| Reloadable: | Yes |
Specifies how long Traffic Server keeps connections to clients open if a transaction stalls.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 120 |
| Reloadable: | Yes |
Specifies how long Traffic Server keeps connections to origin servers open if the transaction stalls.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
The maximum amount of time Traffic Server can remain connected to a client. If the transfer to the client is not complete before this timeout expires, then Traffic Server closes the connection.
The default value of 0 specifies that there is no timeout.
proxy.config.http.transaction_active_timeout_out| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
The maximum amount of time Traffic Server waits for fulfillment of a connection request to an origin server. If Traffic Server does not complete the transfer to the origin server before this timeout expires, then Traffic Server terminates the connection request.
The default value of 0 specifies that there is no timeout.
proxy.config.http.accept_no_activity_timeout| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 120 |
| Reloadable: | Yes |
The timeout interval in seconds before Traffic Server closes a connection that has no activity.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 60 |
| Reloadable: | Yes |
Specifies how long Traffic Server continues a background fill before giving up and dropping the origin server connection.
| Scope: | CONFIG |
|---|---|
| Type: | FLOAT |
| Default: | 0.50000 |
| Reloadable: | Yes |
The proportion of total document size already transferred when a client aborts at which the proxy continues fetching the document from the origin server to get it into the cache (a background fill).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 6 |
| Reloadable: | Yes |
The maximum number of connection retries Traffic Server can make when the origin server is not responding.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2 |
| Reloadable: | Yes |
The maximum number of connection retries Traffic Server can make when the origin server is unavailable.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Limits the number of socket connections across all origin servers to the value specified. To disable, set to zero (0).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Limits the number of socket connections per origin server to the value specified. To enable, set to one (1).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
As connection to an origin server are opened, keep at least ‘n’ number of connections open to that origin, even if the connection isn’t used for a long time period. Useful when the origin supports keep-alive, removing the time needed to set up a new connection from the next request at the expense of added (inactive) connections. To enable, set to one (1).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2 |
| Reloadable: | Yes |
The maximum number of failed connection attempts allowed before a round-robin entry is marked as ‘down’ if a server has round-robin DNS entries.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 30 |
| Reloadable: | Yes |
The timeout value (in seconds) for an origin server connection.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1800 |
| Reloadable: | Yes |
The timeout value (in seconds) for an origin server connection when the client request is a POST or PUT request.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 900 |
| Reloadable: | Yes |
Specifies how long (in seconds) Traffic Server remembers that an origin server was unreachable.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
The number of seconds before Traffic Server marks an origin server as unavailable after a client abandons a request because the origin server was too slow in sending the response header.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Enables (1) or disables (0) the Congestion Control option, which configures Traffic Server to stop forwarding HTTP requests to origin servers when they become congested. Traffic Server sends the client a message to retry the congested origin server later. Refer to Using Congestion Control.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server caches negative responses (such as 404 Not Found) when a requested page does not exist. The next time a client requests the same page, Traffic Server serves the negative response directly from cache.
Note: Cache-Control directives from the server forbidding ache are ignored for the following HTTP response codes, regardless of the value specified for the proxy.config.http.negative_caching_enabled variable. The following negative responses are cached by Traffic Server::
204 No Content
305 Use Proxy
400 Bad Request
403 Forbidden
404 Not Found
405 Method Not Allowed
500 Internal Server Error
501 Not Implemented
502 Bad Gateway
503 Service Unavailable
504 Gateway Timeout
The cache lifetime for objects cached from this setting is controlled via
``proxy.config.http.negative_caching_lifetime``.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server removes the From header to protect the privacy of your users.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server removes the Referrer header to protect the privacy of your site and users.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server removes the User-agent header to protect the privacy of your site and users.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server removes the Cookie header to protect the privacy of your site and users.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server removes Client-IP headers for more privacy.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
When enabled (1), Traffic Server inserts Client-IP headers to retain the client IP address.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
When enabled (1), Traffic Server appends X-Forwards headers to outgoing requests.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The headers Traffic Server should remove from outgoing requests.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server adds the client IP address to the X-Forwarded-For header.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enable (1) to normalize all Accept-Encoding: headers to one of the following:
This is useful for minimizing cached alternates of documents (e.g. gzip, deflate vs. deflate, gzip). Enabling this option is recommended if your origin servers use no encodings other than gzip.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) the HTTP PUSH option, which allows you to deliver content directly to the cache without a user request.
Important: If you enable this option, then you must also specify a filtering rule in the ip_allow.config file to allow only certain machines to push content into the cache.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) ability to a read cached object while the another connection is completing the write to cache for the same object.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 512 |
| Reloadable: | Yes |
Forces the use of a specific hardware sector size (512 - 8192 bytes).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) caching of HTTP requests.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server ignores client requests to bypass the cache.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server issues a conditional request to the origin server if an incoming request has a No-Cache header.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server ignores origin server requests to bypass the cache.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 3 |
| Reloadable: | Yes |
Specifies how cookies are cached:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
When enabled (1), Traffic Server ignores WWW-Authentication headers in responses WWW-Authentication headers are removed and not cached.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) caching of URLs that look dynamic, i.e.: URLs that end in ``.asp`` or contain a question mark (``?``), a semicolon (``;``), or ``cgi``. For a full list, please refer to HttpTransact::url_looks_dynamic
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) caching of alternate versions of HTTP objects that do not contain the Vary header.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Specifies when to revalidate content:
0 = use cache directives or heuristic (the default value)
1 = stale if heuristic
2 = always stale (always revalidate)
3 = never stale
has an If-Modified-Since header
If the request contains the If-Modified-Since header, then Traffic Server always revalidates the cached content and uses the client’s If-Modified-Since header for the proxy request.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Specifies when to add no-cache directives to Microsoft Internet Explorer requests. You can specify the following:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
The type of headers required in a request for the request to be cacheable.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 604800 |
| Reloadable: | Yes |
The maximum age allowed for a stale response before it cannot be cached.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
When enabled (1), Traffic Server looks up range requests in the cache.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Enables (1) or disables (0) the ability to read a cached object while another connection is completing a write to cache for the same object.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Sets a minimum fuzz time; the default value is 0. Effective fuzz time is a calculation in the range (fuzz.min_time - fuzz.min_time).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server serves documents from cache with a Content-Type: header that does not match the Accept: header of the request.
Note: This option should only be enabled if you’re having problems with caching and one of the following is true:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server serves documents from cache with a Content-Language: header that does not match the Accept-Language: header of the request.
Note: This option should only be enabled if you’re having problems with caching and your origin server is guaranteed to set Vary: Accept-Language when doing content negotiation with Accept-Language.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server serves documents from cache with a Content-Type: header that does not match the Accept-Charset: header of the request.
Note: This option should only be enabled if you’re having problems with caching and your origin server is guaranteed to set Vary: Accept-Charset when doing content negotiation with Accept-Charset.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
When enabled (1), Traffic Server ignores any Cache-Control: max-age headers from the client.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), Traffic Server will keep certain HTTP objects in the cache for a certain time as specified in cache.config.
| Scope: | CONFIG |
|---|---|
| Type: | FLOAT |
| Default: | 0.10000 |
| Reloadable: | Yes |
The aging factor for freshness computations. Traffic Server stores an object for this percentage of the time that elapsed since it last changed.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 240 |
| Reloadable: | Yes |
How often Traffic Server checks for an early refresh, during the period before the document stale time. The interval specified must be in seconds.
| Scope: | CONFIG |
|---|---|
| Type: | FLOAT |
| Default: | 0.00500 |
| Reloadable: | Yes |
The probability that a refresh is made on a document during the specified fuzz time.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The header on which Traffic Server varies for text documents.
For example: if you specify User-agent, then Traffic Server caches all the different user-agent versions of documents it encounters.
proxy.config.http.cache.vary_default_images| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The header on which Traffic Server varies for images.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The header on which Traffic Server varies for anything other than text and images.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 Specifies whether customizable response pages are enabled or disabled and which response pages are used: |
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
Enables (1) or disables (0) logging for customizable response pages. When enabled, Traffic Server records a message in the error log each time a customized response page is used or modified.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | config/body_factory |
The customizable response page default directory.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Specifies when Traffic Server suppresses generated response pages:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) local domain expansion.
Traffic Server can attempt to resolve unqualified hostnames by expanding to the local domain. For example if a client makes a request to an unqualified host (host_x) and the Traffic Server local domain is y.com , then Traffic Server will expand the hostname to host_x.y.com.
proxy.config.dns.splitDNS.enabled| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) DNS server selection. When enabled, Traffic Server refers to the splitdns.config file for the selection specification. Refer to Configuring DNS Server Selection (Split DNS).
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
Specifies a list of hostname extensions that are automatically added to the hostname after a failed lookup. For example: if you want Traffic Server to add the hostname extension .org, then specify org as the value for this variable (Traffic Server automatically adds the dot (.)).
Note: If the variable proxy.config.http.enable_url_expandomatic is set to 1 (the default value), then you do not have to add ``www.`` and ``.com`` to this list because Traffic Server automatically tries www. and .com after trying the values you’ve specified.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | /etc/resolv.conf |
Allows to specify which resolv.conf file to use for finding resolvers. While the format of this file must be the same as the standard resolv.conf file, this option allows an administrator to manage the set of resolvers in an external configuration file, without affecting how the rest of the operating system uses DNS.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) DNS server round-robin.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The DNS servers.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Indicates whether to use SRV records for orgin server lookup.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | *NONE* |
The number of seconds for which to use a stale NS record while initiating a background fetch for the new data.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 33554432 |
The amount of space (in bytes) used to store hostdb. The value of this variable must be increased if you increase the size of the proxy.config.hostdb.size variable.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 200000 |
The maximum number of entries that can be stored in the database.
Note
For values above 200000, you must increase the value of the proxy.config.hostdb.storage_size variable by at least 44 bytes per entry.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
The host database time to live mode. You can specify one of the following:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1440 |
| Reloadable: | Yes |
The foreground timeout (in minutes).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When disabled (0), Traffic Server always uses the same origin server for the same client, for as long as the origin server is available.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 3 |
| Reloadable: | Yes |
Enables and disables event logging:
Refer to Working with Log Files.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 5 |
| Reloadable: | Yes |
The maximum amount of time before data in the buffer is flushed to disk.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2000 |
| Reloadable: | Yes |
The amount of space allocated to the logging directory (in MB). Note: All files in the logging directory contribute to the space used, even if they are not log files. In collation client mode, if there is no local disk logging, or max_space_mb_for_orphan_logs is set to a higher value than max_space_mb_for_logs, TS will take proxy.config.log.max_space_mb_for_orphan_logs for maximum allowed log space.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 25 |
| Reloadable: | Yes |
The amount of space allocated to the logging directory (in MB) if this node is acting as a collation client.
Note: When max_space_mb_for_orphan_logs is take as the maximum allowedlog space in the logging system, the same rule apply to proxy.config.log.max_space_mb_for_logs also apply to proxy.config.log.max_space_mb_for_orphan_logs, ie: All files in the logging directory contribute to the space used, even if they are not log files. you may need to consider this when you enable full remote logging, and bump to the same size as proxy.config.log.max_space_mb_for_logs.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
The tolerance for the log space limit (in bytes). If the variable proxy.config.log.auto_delete_rolled_files is set to 1 (enabled), then autodeletion of log files is triggered when the amount of free space available in the logging directory is less than the value specified here.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | localhost |
| Reloadable: | Yes |
The hostname of the machine running Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | install_dir\ ``/logs`` |
| Reloadable: | Yes |
The full path to the logging directory. This can be an absolute path or a path relative to the directory in which Traffic Server is installed.
Note: The directory you specify must already exist.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | rw-r–r– |
| Reloadable: | Yes |
The log file permissions. The standard UNIX file permissions are used (owner, group, other). Permissible values are:
- no permission r read permission w write permission x execute permission
Permissions are subject to the umask settings for the Traffic Server process. This means that a umask setting of002 will not allow write permission for others, even if specified in the configuration file. Permissions for existing log files are not changed when the configuration is changed.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) custom logging.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) the squid log file format.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
The squid log file type:
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | squid |
| Reloadable: | Yes |
The squid log filename.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
The squid log file header text.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) the Netscape common log file format.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
The Netscape common log file type:
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | common |
| Reloadable: | Yes |
The Netscape common log filename.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The Netscape common log file header text.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) the Netscape extended log file format.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
The Netscape extended log file type:
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | extended |
The Netscape extended log filename.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The Netscape extended log file header text.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) the Netscape Extended-2 log file format.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
The Netscape Extended-2 log file type:
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | extended2 |
| Reloadable: | Yes |
The Netscape Extended-2 log filename.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The Netscape Extended-2 log file header text.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), configures Traffic Server to store ICP transactions in a separate log file.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), configures Traffic Server to create a separate log file for HTTP transactions for each origin server listed in the log_hosts.config file. Refer to HTTP Host Log Splitting.
| Scope: | LOCAL |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Set the log collation mode.
| Value | Effect |
|---|---|
| 0 | collation is disabled |
| 1 | this host is a log collation server |
| 2 | this host is a collation client and sends entries using standard formats to the collation server |
| 3 | this host is a collation client and sends entries using the traditional custom formats to the collation server |
| 4 | this host is a collation client and sends entries that use both the standard and traditional custom formats to the collation server |
For information on sending XML-based custom formats to the collation server, refer to logs_xml.config.
Note
Although Traffic Server supports traditional custom logging, you should use the more versatile XML-based custom formats.
| Scope: | proxy.confg.log.collation_host |
|---|---|
| Type: | NULL |
| Default: | *NONE* |
The hostname of the log collation server.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 8085 |
| Reloadable: | Yes |
The port used for communication between the collation server and client.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | foobar |
| Reloadable: | Yes |
The password used to validate logging data and prevent the exchange of unauthorized information when a collation server is being used.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
When enabled (1), configures Traffic Server to include the hostname of the collation client that generated the log entry in each entry.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 5 |
| Reloadable: | Yes |
The number of seconds between collation server connection retries.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Specifies how log files are rolled. You can specify the following values:
0 = disables log file rolling
proxy.config.log.rolling_interval_sec and proxy.config.log.rolling_offset_hr variables)
2 = enables log file rolling when log files reach a specific size (specified with the proxy.config.log.rolling_size_mb variable)
3 = enables log file rolling at specific intervals during the day or when log files reach a specific size (whichever occurs first)
time if the file is of the specified size)
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 86400 |
| Reloadable: | Yes |
The log file rolling interval, in seconds. The minimum value is 300 (5 minutes). The maximum, and default, value is 86400 seconds (one day).
Note: If you start Traffic Server within a few minutes of the next rolling time, then rolling might not occur until the next rolling time.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
The file rolling offset hour. The hour of the day that starts the log rolling period.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
The size that log files must reach before rolling takes place.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) automatic deletion of rolled files.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Configures Traffic Server to log only a sample of transactions rather than every transaction. You can specify the following values:
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
The number of milliseconds before a slow connection’s debugging stats are dumped. Specify 1 to enable or 0 to disable.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | *NONE* |
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | *NONE* |
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | *NONE* |
control where Traffic Server should log diagnostic output. Messages at diagnostic level can be directed to any combination of diagnostic destinations. Valid diagnostic message destinations are::
* 'O' = Log to standard output
* 'E' = Log to standard error
* 'S' = Log to syslog
* 'L' = Log to diags.log
Example
To log debug diagnostics to both syslog and diags.log::
proxy.config.diags.output.debug STRING SL
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Enables (1) or disables (0) HTTP reverse proxy.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
| Reloadable: | Yes |
The URL to which to redirect requests with no host headers (reverse proxy).
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) requests for a PAC file on the proxy service port (8080 by default) to be redirected to the PAC port. For this type of redirection to work, the variable proxy.config.reverse_proxy.enabled must be set to 1.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | -1 |
| Reloadable: | Yes |
Sets the PAC port so that PAC requests made to the Traffic Server proxy service port are redirected this port. -1 is the default setting that sets the PAC port to the autoconfiguration port (the default autoconfiguration port is 8083). This variable can be used together with the proxy.config.url_remap.default_to_server_pac variable to get a PAC file from a different port. You must create and run a process that serves a PAC file on this port. For example: if you create a Perl script that listens on port 9000 and writes a PAC file in response to any request, then you can set this variable to 9000. Browsers that request the PAC file from a proxy server on port 8080 will get the PAC file served by the Perl script.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Set this variable to 1 if you want Traffic Server to serve requests only from origin servers listed in the mapping rules of the remap.config file. If a request does not match, then the browser will receive an error.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
| Reloadable: | Yes |
Set this variable to 1 if you want to retain the client host header in a request during remapping.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Enables (1) or disables (0) SSLv2. Please don’t enable it.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
Enables (1) or disables (0) SSLv3.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
Enables (1) or disables (0) TLSv1.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Sets the client certification level:
not verify client certificates during the SSL handshake. Access to Traffic Server depends on Traffic Server configuration options (such as access control lists).
certificate, then the certificate is validated. If the client does not have a certificate, then the client is still allowed access to Traffic Server unless access is denied through other Traffic Server configuration options.
authenticated during the SSL handshake. Clients without a certificate are not allowed to access Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | /config |
The location of the SSL certificates and chains used for accepting and validation new SSL sessions. If this is a relative path, it is appended to the Traffic Server installation PREFIX. All certificates and certificate chains listed in ssl_multicert.config will be loaded relative to this path.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
The location of the SSL certificate private keys. Change this variable only if the private key is not located in the SSL certificate file. All private keys listed in ssl_multicert.config will be loaded relative to this path.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
The name of a file containing a global certificate chain that should be used with every server certificate. This file is only used if there are certificates defined in ssl_multicert.conf. Unless this is an absolute path, it is loaded relative to the path specified by proxy.config.ssl.server.cert.path.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
The location of the certificate authority file that client certificates will be verified against.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | NULL |
The filename of the certificate authority that client certificates will be verified against.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Sets ICP mode for hierarchical caching:
Refer to ICP Peering.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | your_interface |
Specifies the network interface used for ICP traffic.
Note: The Traffic Server installation script detects your network interface and sets this variable appropriately. If your system has multiple network interfaces, check that this variable specifies the correct interface.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 3130 |
| Reloadable: | Yes |
Specifies the UDP port that you want to use for ICP messages.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2 |
| Reloadable: | Yes |
Specifies the timeout used for ICP queries.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
| Reloadable: | Yes |
Enables (1) or disables (0) a force immediate update. When enabled, Traffic Server overrides the scheduling expiration time for all scheduled update entries and initiates updates until this option is disabled.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 10 |
| Reloadable: | Yes |
Specifies the number of times Traffic Server can retry the scheduled update of a URL in the event of failure.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 2 |
| Reloadable: | Yes |
Specifies the delay (in seconds) between each scheduled update retry for a URL in the event of failure.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 100 |
| Reloadable: | Yes |
Specifies the maximum simultaneous update requests allowed at any time. This option prevents the scheduled update process from overburdening the host.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Enables (1) or disables (0) the ability to run separate threads for remap plugin processing.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 1 |
Specifies the number of threads that will be used for remap plugin rocessing.
| Scope: | CONFIG |
|---|---|
| Type: | STRING |
| Default: | config/plugins |
Specifies the location of Traffic Server plugins.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | `1` |
default: 1 meaning on all Platforms except Linux: 45 seconds
This directive enables operating system specific optimizations for a listening socket. defer_accept holds a call to accept(2) back until data has arrived. In Linux’ special case this is up to a maximum of 45 seconds.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Sets the send buffer size for connections from the client to Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Sets the receive buffer size for connections from the client to Traffic Server.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Turns different options “on” for the socket handling client connections::
TCP_NODELAY (1)
SO_KEEPALIVE (2)
Note: This is a flag and you look at the bits set. Therefore, you must set the value to 3 if you want to enable both options above.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Sets the send buffer size for connections from Traffic Server to the origin server.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Sets the receive buffer size for connections from Traffic Server to the origin server.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Turns different options “on” for the origin server socket::
TCP_NODELAY (1)
SO_KEEPALIVE (2)
Note: This is a flag and you look at the bits set. Therefore, you must set the value to 3 if you want to enable both options above.
| Scope: | CONFIG |
|---|---|
| Type: | INT |
| Default: | 0 |
Same as the command line option --accept_mss that sets the MSS for all incoming requests.