echoip icon indicating copy to clipboard operation
echoip copied to clipboard

Docker Image

Open ragyabraham opened this issue 3 years ago • 1 comments

I am currently attempting to self host the docker image. However, after self deploying the docker image on k8s infrastructure when i make a call (internal network call RFC 1918) to the service the response is merely an echo that contains the IP i sent in decimal format.

Any idea whats going on there? Or what i need to do to get this working?

ragyabraham avatar Mar 08 '21 01:03 ragyabraham

  1. set parameter '-H X-Forwarded-For' at start
  2. install ingress-nginx inside cluster
  3. configure additional with configmap, example
apiVersion: v1
kind: ConfigMap
metadata:
  name: headers
data:
  use-forwarded-headers: "true"
  enable-real-ip: "true"

leros1337 avatar Apr 29 '21 07:04 leros1337