Git Product home page Git Product logo

httproxy's Introduction

httproxy

A single binary to proxy traffic based on paths.

Example

If your app, running on port 8000, has a separate server for health checks running on port 4040.

httproxy /health=:4040 /=:8000

Docker

httproxy can be used as a Docker ENTRYPOINT by ending the arguments with --. Then it will run all the arguments after as a command in a subprocess which when shutdown will automatically turn off the proxy.

Here's an example using a separate build step for the download and unpacking to keep the final image lean.

FROM alpine:3.11.6 AS download
RUN apk --update add ca-certificates
RUN mkdir -m 777 /scratchtmp
RUN wget https://github.com/slaskis/httproxy/releases/download/0.4.0/httproxy-0.4.0-linux-amd64.tar.gz
RUN tar -xzf httproxy-0.4.0-linux-amd64.tar.gz

FROM alpine:3.11.6
COPY --from=download /scratchtmp /tmp
COPY --from=download /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=download /httproxy /usr/local/bin/httproxy
ENTRYPOINT ["httproxy", "/health/=localhost:13133/", "/=localhost:55681", "--"]
CMD ["app"]

httproxy's People

Contributors

slaskis avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.