diff --git a/CHANGELOG.md b/CHANGELOG.md
index afbb214..11029a5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -20,6 +20,7 @@ $ git log origin/master..origin/gwright99/25_2_0_update --oneline
- Added Studios SSH support. Requires Platform >= v25.3.3 and connect-proxy >= 0.10.0. [`#313`](https://github.com/seqeralabs/cx-field-tools-installer/issues/313)
- Updated Platform Connect containers version to 0.11.0.
- Updated Studios recommended base images.
+ - Raised wave-lite nginx `client_max_body_size` from 1m to 10m to prevent HTTP 413 errors when Fusion uploads large bin/ bundles. [`#315`](https://github.com/seqeralabs/cx-field-tools-installer/issues/315)
- TBD
diff --git a/Makefile b/Makefile
index 5667d4f..e4e1fd4 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ apply: verify
@echo "Invoking 'terraform apply'"
@terraform apply
-destroy:
+destroy:
@python3 .githooks/check_destroy.py
@terraform destroy
@@ -35,7 +35,7 @@ generate_json_plan:
test_cleanse:
@rm tests/datafiles/base-overrides.auto.tfvars
@rm tests/datafiles/terraform.tfvars
- @rm tests/datafiles/secrets/*.json
+ @rm tests/datafiles/secrets/*.json
generate_test_data:
@echo "Generating test data."
@@ -45,6 +45,9 @@ generate_test_data:
run_tests:
@pytest -c tests/pytest.ini tests/
+run_tests_no_containers:
+ @pytest -c tests/pytest.ini tests/ -m "not testcontainer"
+
purge_cached_plans:
@cd tests/ && rm -rf .plan_cache
@@ -55,7 +58,3 @@ purge_cache:
@echo "Purging testing caches"
@$(MAKE) purge_cached_templatefiles
@$(MAKE) purge_cached_plans
-
-
-
-
diff --git a/assets/src/wave_lite_config/nginx.conf b/assets/src/wave_lite_config/nginx.conf
index 375637a..c0e3bb8 100644
--- a/assets/src/wave_lite_config/nginx.conf
+++ b/assets/src/wave_lite_config/nginx.conf
@@ -8,6 +8,8 @@ http {
server {
listen 80;
+ client_max_body_size 10m;
+
location / {
proxy_pass http://wave;