Skip to content
Snippets Groups Projects
Commit 22036930 authored by Sebastian Mohr's avatar Sebastian Mohr
Browse files

Patch: Increased size limit for uploads in nginx

parent 505d18d1
No related branches found
No related tags found
No related merge requests found
Pipeline #498810 passed
......@@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.7.2]
### Fixed
- Upload size was restricted to 2MB by nginx, increase limit to 30MB
## [1.7.1]
## Fixed
......
......@@ -88,6 +88,7 @@ http {
# Everything else goes to next.js web app
location / {
client_max_body_size 30M;
proxy_pass http://snip_next:4000;
proxy_http_version 1.1;
proxy_read_timeout 900;
......
{
"name": "snip",
"version": "1.7.1",
"version": "1.7.2",
"description": "our digital lab book",
"author": "Sebastian B. Mohr, Markus Osterhoff",
"repository": {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment