# Configure ingress to use configmap

**URL:** https://discuss.kubernetes.io/t/configure-ingress-to-use-configmap/23391
**Category:** General Discussions
**Created:** [March 9, 2023, 11:34am UTC](https://discuss.kubernetes.io/t/configure-ingress-to-use-configmap/23391 "2023-03-09T11:34:06Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Mr\_Hi\_Ram](https://sea2.discourse-cdn.com/flex016/user_avatar/discuss.kubernetes.io/mr_hi_ram/32/11866_2.png) [@Mr\_Hi\_Ram](https://discuss.kubernetes.io/u/Mr_Hi_Ram)
#### Post date: [March 9, 2023, 11:34am UTC](https://discuss.kubernetes.io/t/configure-ingress-to-use-configmap/23391/1 "2023-03-09T11:34:06Z")

</div>

Asking for help? Comment out what you need so we can get more information to help you!

How do I make my Ingress to load the configuration from the ConfigMap

my configmap file

```auto
kind: ConfigMap
apiVersion: v1
metadata:
  name: ingress-configmap
data:
  proxy-read-timeout: "86s"
  client-max-body-size: "1g"

```

My ingress:

```auto
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
  name: ingress
  annotations:
    nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
spec:
  rules:
    - host: my.com
      http:
        paths:
          - path: /
            backend:
              serviceName: web
              servicePort: 443

```

---

<div class="post-metadata">

### Author: ![protosam](https://sea2.discourse-cdn.com/flex016/user_avatar/discuss.kubernetes.io/protosam/32/7732_2.png) [@protosam](https://discuss.kubernetes.io/u/protosam)
#### Post date: [March 9, 2023, 4:56pm UTC](https://discuss.kubernetes.io/t/configure-ingress-to-use-configmap/23391/2 "2023-03-09T16:56:53Z")

</div>

Documentation makes me think [proxy-body-size](https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/configmap/#proxy-body-size) is what you want.
