diff options
author | Brad Fitzpatrick <[email protected]> | 2020-01-24 20:48:25 -0800 |
---|---|---|
committer | Brad Fitzpatrick <[email protected]> | 2020-01-24 20:48:25 -0800 |
commit | b6bb9b5b82524122bcf27291ede32d1517a14ab8 (patch) | |
tree | c78b265af24b2922157774d04c99ca61bf92e9ba | |
parent | dfa16c61dad2b18a385dfb351adf71566720535b (diff) |
Update import path to inet.af/tcpproxy
-rw-r--r-- | .travis.yml | 7 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | cmd/tlsrouter/README.md | 8 |
3 files changed, 10 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 9c94088..56aafcb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: go go: -- 1.8 +- "1.12" +- "1.13" - tip os: - linux @@ -17,7 +18,7 @@ script: jobs: include: - stage: deploy - go: 1.8 + go: "1.13" install: - gem install fpm script: @@ -27,7 +28,7 @@ jobs: --vendor "David Anderson <[email protected]>" --maintainer "David Anderson <[email protected]>" --description "TLS SNI router" - --url "https://github.com/google/tlsrouter" + --url "https://github.com/inetaf/tcpproxy/tree/master/cmd/tlsrouter" ./tlsrouter=/usr/bin/tlsrouter ./systemd/tlsrouter.service=/lib/systemd/system/tlsrouter.service deploy: @@ -1,5 +1,5 @@ # tcpproxy -For library usage, see https://godoc.org/github.com/google/tcpproxy/ +For library usage, see https://godoc.org/inet.af/tcpproxy/ -For CLI usage, see https://github.com/google/tcpproxy/blob/master/cmd/tlsrouter/README.md +For CLI usage, see https://github.com/inetaf/tcpproxy/blob/master/cmd/tlsrouter/README.md diff --git a/cmd/tlsrouter/README.md b/cmd/tlsrouter/README.md index 9c7eee2..d915c32 100644 --- a/cmd/tlsrouter/README.md +++ b/cmd/tlsrouter/README.md @@ -1,10 +1,10 @@ # TLS SNI router -[![license](https://img.shields.io/github/license/google/tlsrouter.svg?maxAge=2592000)](https://github.com/google/tlsrouter/blob/master/LICENSE) [![Travis](https://img.shields.io/travis/google/tlsrouter.svg?maxAge=2592000)](https://travis-ci.org/google/tlsrouter) [![api](https://img.shields.io/badge/api-unstable-red.svg)](https://godoc.org/go.universe.tf/tlsrouter) +[![license](https://img.shields.io/github/license/google/tlsrouter.svg?maxAge=2592000)](https://github.com/inetaf/tcpproxy/blob/master/LICENSE) [![Travis](https://img.shields.io/travis/google/tlsrouter.svg?maxAge=2592000)](https://travis-ci.org/google/tlsrouter) [![api](https://img.shields.io/badge/api-unstable-red.svg)](https://godoc.org/go.universe.tf/tlsrouter) -TLSRouter is a TLS proxy that routes connections to backends based on the TLS SNI (Server Name Indication) of the TLS handshake. It carries no encryption keys and cannot decode the traffic that it proxies. - -This is not an official Google project. +TLSRouter is a TLS proxy that routes connections to backends based on +the TLS SNI (Server Name Indication) of the TLS handshake. It carries +no encryption keys and cannot decode the traffic that it proxies. ## Installation |