Sonarqube measures use http get, but parameters too large, and my nginx only close the connectio without any message

Finally, found the nginx configuration issue:
http2_max_field_size 4k; -> http2_max_field_size 16k;

After the change, it works fine.

1 Like