diff --git a/deploy/convert_server.py b/deploy/convert_server.py index 2026491..63dedda 100755 --- a/deploy/convert_server.py +++ b/deploy/convert_server.py @@ -318,7 +318,7 @@ class Handler(BaseHTTPRequestHandler): for i in range(total): chunk = raw[i*CHUNK:(i+1)*CHUNK] - with httpx.Client(http2=True, timeout=30) as client: + with httpx.Client(http2=True, timeout=30, verify=False) as client: r = client.post( f"{LUCEE_URL}/chunk.cfm?action=put", json={ diff --git a/deploy/nginx-contracts.conf b/deploy/nginx-contracts.conf index bb75aae..e4b83ab 100644 --- a/deploy/nginx-contracts.conf +++ b/deploy/nginx-contracts.conf @@ -49,6 +49,7 @@ server { add_header Access-Control-Allow-Headers "*"; if ($request_method = OPTIONS) { return 204; } proxy_pass http://127.0.0.1:8766; + proxy_read_timeout 300s; client_max_body_size 100m; }