-
I have a multi-service container application, each of which listens for requests on a unix socket. I'll like to have the client pass all requests to the central service, and have it redirect to the others. but I haven't been able to find a way to do that. When the redirect comes back from the server it raises an I used the Is there a straightforward way of doing this that I'm not seeing? It would be great to have something like a One option would be to use a mount map, and have only the central service use a unix socket, but I'd prefer to have them all do that. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I think you're looking for the python httpx library? |
Beta Was this translation helpful? Give feedback.
So I am. Thanks.