diff --git a/automation/roles/bubble_finalizer/files/bubble-nodemanager b/automation/roles/bubble_finalizer/files/bubble-nodemanager index a31b9a52..382e7ffe 100755 Binary files a/automation/roles/bubble_finalizer/files/bubble-nodemanager and b/automation/roles/bubble_finalizer/files/bubble-nodemanager differ diff --git a/automation/roles/nginx/templates/site_node.conf.j2 b/automation/roles/nginx/templates/site_node.conf.j2 index 48484197..90b457a5 100644 --- a/automation/roles/nginx/templates/site_node.conf.j2 +++ b/automation/roles/nginx/templates/site_node.conf.j2 @@ -4,6 +4,7 @@ server { listen 1080; listen {{ ssl_port }} ssl http2; listen 443 ssl http2; + client_max_body_size 200M; root /home/bubble/site/; index index.html; diff --git a/automation/roles/nginx/templates/site_node_alias.conf.j2 b/automation/roles/nginx/templates/site_node_alias.conf.j2 index a7a9e882..40dcc06c 100644 --- a/automation/roles/nginx/templates/site_node_alias.conf.j2 +++ b/automation/roles/nginx/templates/site_node_alias.conf.j2 @@ -4,6 +4,7 @@ server { listen 1080; listen {{ ssl_port }} ssl http2; listen 443 ssl http2; + client_max_body_size 200M; root /home/bubble/site/; index index.html; diff --git a/automation/roles/nginx/templates/site_sage.conf.j2 b/automation/roles/nginx/templates/site_sage.conf.j2 index f62402fe..98892225 100644 --- a/automation/roles/nginx/templates/site_sage.conf.j2 +++ b/automation/roles/nginx/templates/site_sage.conf.j2 @@ -1,6 +1,7 @@ server { listen 80; server_name {{ server_name }}; + client_max_body_size 200M; root /home/bubble/site/; index index.html; diff --git a/automation/roles/nginx/templates/site_sage_alias.conf.j2 b/automation/roles/nginx/templates/site_sage_alias.conf.j2 index 17426d0f..e2802afe 100644 --- a/automation/roles/nginx/templates/site_sage_alias.conf.j2 +++ b/automation/roles/nginx/templates/site_sage_alias.conf.j2 @@ -1,6 +1,7 @@ server { listen 80; server_name {{ server_alias }}; + client_max_body_size 200M; root /home/bubble/site/; index index.html;