Created
November 5, 2013 22:13
-
-
Save ubermuda/7327264 to your computer and use it in GitHub Desktop.
Proxy a unix socket HTTP server to a tcp port using nginx.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 127.0.0.1:9000; | |
location / { | |
proxy_pass http://unix:/var/run/docker.sock:/; | |
} | |
} |
What if I want to send an ACK how would I achieve that? Can you help me please.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for this specific example, it's really helpful! 👍