Git Product home page Git Product logo

Comments (2)

minrk avatar minrk commented on June 11, 2024 1

The --default-target http://localhost:8080 means that the proxy will forward requests to localhost:8080 inside the container, which I'm guessing isn't what you want. You will need to pass the host of the target as seen from the proxy's container, such as --default-target http://other-container:8080. I see you have discovered this by passing the machine's actual IP.

Assuming you are on linux and not macOS or Windows, you can use --net=host to put the proxy's networking into the host context, which should cause localhost to resolve how you expect both inside and outside the proxy.

The second piece is the API interface. This listens only on localhost by default (as above, this is resolved in the container, not on the host), which isn't what docker exposes when you pass a -p argument. To expose the API on the docker URL, you will need to add --api-ip=0.0.0.0 to your docker command. As you've discovered, listening only on localhost doesn't make a whole lot of sense when CHP is run in a container, so we should probably change make --api-ip=0.0.0.0 the default behavior of the container.

from configurable-http-proxy.

kastork avatar kastork commented on June 11, 2024 1

@minrk Thanks for the details. I'll try to do some more experimenting later this week.

from configurable-http-proxy.

Related Issues (20)

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.