Author: amc
Date: Tue Jun 19 22:40:41 2012
New Revision: 1351893
URL: http://svn.apache.org/viewvc?rev=1351893&view=rev
Log:
Tweaked HTTP Port configuration documentation.
Modified:
trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/records.config.en.mdtext
Modified:
trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/records.config.en.mdtext
URL:
http://svn.apache.org/viewvc/trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/records.config.en.mdtext?rev=1351893&r1=1351892&r2=1351893&view=diff
==============================================================================
---
trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/records.config.en.mdtext
(original)
+++
trafficserver/site/trunk/content/docs/trunk/admin/configuration-files/records.config.en.mdtext
Tue Jun 19 22:40:41 2012
@@ -280,7 +280,7 @@ the `records.config` file.
*`proxy.config.http.server_ports`* {#proxy.config.http.server_ports}
: `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.
+: 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 unless keywords conflict (e.g. `tr-full` and `ssl`) in
which case the right most keyword dominates, although in such cases odd
behavior may result.
<table><tr><td><strong>Keyword</strong></td><td><strong>Meaning</strong></td></tr>
<tr><td><em>number</em></td><td>IP port. Required.</td></tr>
@@ -304,12 +304,20 @@ the `records.config` file.
Listen on port 80 on any address for IPv4 and IPv6.
<tt>
+ IPv4:8080:tr-FULL TR-full:IP-in=[fc02:10:10:1::1]:8080
+ </tt>
+
+ 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`).
+
+ <tt>
8080:ipv6:tr-full 443:ssl
80:ip-in=192.168.17.1:ip-out=[fc01:10:10:1::1]:ip-out=10.10.10.1
</tt>
Listen on port 8080 any address for IPv6, fully transparent. Set up an SSL
port on 443. 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.
+ Note: All IPv6 addresses must be enclosed in square brackets.
+
Note: For SSL you must still configure the certificates, this option
handles only the port configuration.
Note: old style configuration of ports should still work but support for
that will be removed at some point in the future.