Enable GRPC with reverse_proxy

Here is the minimal Caddyfile (2.7.4) for GRPC reverse proxy:

{
  servers {
    protocols h1 h2c
  }
}
:{$GRPC_PORT} {
    reverse_proxy h2c://{$MASTER_HOST}:{$GRPC_PORT}
}