You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry if this is out of scope and/or irrelevant, but I was wondering... I have a server with multiple network interfaces. I would love to separate some services out by routing requests via kamal-proxy only if they come in via one specific network interface / IP address.
Right now (I assume) this is not possible because kamal-proxy listens on 0.0.0.0, is that correct?
e9ce65d37e82 basecamp/kamal-proxy:v0.8.2 "kamal-proxy run" 24 minutes ago Up 24 minutes 0.0.0.0:80->80/tcp, :::80->80/tcp, 0.0.0.0:443->443/tcp, :::443->443/tcp kamal-proxy
The text was updated successfully, but these errors were encountered:
@julianrubisch I have proposed a solution - basecamp/kamal#1265
Would you be able to test it out with your server and let me know. If not I will do some of my own testing later today with my server.
Works on my server 👌
kamal proxy boot_config set --publish-ip=127.0.0.1
$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
5f1177b6f1e0 basecamp/kamal-proxy:v0.8.2 "kamal-proxy run" 3 minutes ago Up 3 minutes 127.0.0.1:80->80/tcp, 127.0.0.1:443->443/tcp kamal-proxy
$ netstat -tulpn | grep :80
tcp 0 0 127.0.0.1:80 0.0.0.0:* LISTEN 2839/docker-proxy
Sorry if this is out of scope and/or irrelevant, but I was wondering... I have a server with multiple network interfaces. I would love to separate some services out by routing requests via kamal-proxy only if they come in via one specific network interface / IP address.
Right now (I assume) this is not possible because
kamal-proxy
listens on0.0.0.0
, is that correct?The text was updated successfully, but these errors were encountered: