CosmosShadow / gptpdf

Using GPT to parse PDF
MIT License
2.76k stars 212 forks source link

About the '413' error #38

Closed fatsandfreedom closed 1 month ago

fatsandfreedom commented 1 month ago

Thank you to the open-source author for pointing out that the problem was with the proxy. I have fix the error last week.

The error "413 Request Entity Too Large" means that the request is too big. This usually happens because Nginx has a default limit on the size of requests. To fix this, add or modify the following line in nginx.conf:

http { ... client_max_body_size 50M; # Or whatever maximum size need ... }

CosmosShadow commented 1 month ago

Nice.