Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 511 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 511 Bytes

Example config for linkerd as an HTTP Proxy

For more information see our HTTP Proxy documentation.

Setup webapp

echo "Hello world" > hello; python3 -m http.server 8888

Setup linkerd

curl -sLO https://github.com/linkerd/linkerd/releases/download/1.4.6/linkerd-1.4.6-exec
chmod +x linkerd-1.4.6-exec
./linkerd-1.4.6-exec ./linkerd.yaml

Test

$ http_proxy=localhost:4140 curl -s http://webapp/hello
Hello world