Repository: trafficserver Updated Branches: refs/heads/master e89dc276f -> 728bd4c3b
update the docs with steps to build spdy enabled trafficserver Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/728bd4c3 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/728bd4c3 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/728bd4c3 Branch: refs/heads/master Commit: 728bd4c3b8db4a3b369104e2a65cfe7c879b9546 Parents: e89dc27 Author: Sudheer Vinukonda <[email protected]> Authored: Tue Jan 27 21:21:13 2015 +0000 Committer: Sudheer Vinukonda <[email protected]> Committed: Tue Jan 27 21:21:13 2015 +0000 ---------------------------------------------------------------------- doc/admin/getting-started.en.rst | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/728bd4c3/doc/admin/getting-started.en.rst ---------------------------------------------------------------------- diff --git a/doc/admin/getting-started.en.rst b/doc/admin/getting-started.en.rst index 7462606..23c5f72 100644 --- a/doc/admin/getting-started.en.rst +++ b/doc/admin/getting-started.en.rst @@ -142,6 +142,29 @@ You are now ready to configure and run your Traffic Server installation. .. _start-traffic-server: +Building Traffic Server with SPDY +================================= + +Traffic Server v5.0.x and above support SPDY. The following instructions demonstrate +building a fresh Traffic Server with SPDY enabled from Git sources. + +#. Clone the spdylay Git repository from tatsuhiro. :: + + git clone https://github.com/tatsuhiro-t/spdylay + +#. The below steps will build spdylay library and set the PKG_CONFIG_PATH :: + + cd spdylay/ + autoreconf -if + ./configure --prefix=/opt/spdylay + make install + export PKG_CONFIG_PATH=/opt/spdylay/lib/pkgconfig/ + +#. Finally, you can build trafficserver following the steps in the previous section along + with an additional option --enable-spdy as below :: + + ./configure --enable-spdy + Start Traffic Server ====================
