Can Istio automatically set X-Forwarded headers in the request

I’m currently hard-coding X-Forwarded-* in my VirtualService

headers:
  request:
    set:
      X-Forwarded-Proto: "http"
      X-Forwarded-Host: "my-host"
      X-Forwarded-Port: "31380"

However, can Istio just set these for me automatically?