Skip to content

Latest commit

 

History

History

http-proxy

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

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