@JAPNAM SINGH Are you using HTTP trigger function app?
As per the this code there is hard limit set for 100 MB and I don't see any configuration that can help you to increase this limit. I do see an issue created on the function host but as of now this is not configurable.
The workaround would be :
- We strongly recommend using blob storage to manage large uploads
- The closest you can get is to switch to using a custom site extension (or for linux, with a custom container).
The custom container approach is probably the most maintainable, because you could have your docker file modify the web.config and use the rest of the functions base image as it is. But every time there is a new functions image, you need to rebuilds your container and deploys.