fix: remove upload limit of 200M in NGINX configs for mainsail and fluidd

This commit is contained in:
th33xitus
2021-01-22 20:52:21 +01:00
parent 8bf20aa059
commit 036fb08132
2 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ server {
server_name _; server_name _;
#max upload size for gcodes #max upload size for gcodes
client_max_body_size 200M; client_max_body_size 0;
location / { location / {
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
@@ -84,4 +84,4 @@ server {
location /webcam/ { location /webcam/ {
proxy_pass http://mjpgstreamer/; proxy_pass http://mjpgstreamer/;
} }
} }

View File

@@ -24,7 +24,7 @@ server {
server_name _; server_name _;
#max upload size for gcodes #max upload size for gcodes
client_max_body_size 200M; client_max_body_size 0;
location / { location / {
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
@@ -84,4 +84,4 @@ server {
location /webcam/ { location /webcam/ {
proxy_pass http://mjpgstreamer/; proxy_pass http://mjpgstreamer/;
} }
} }