I\'m currently working on a website, which triggers a net::ERR_HTTP2_PROTOCOL_ERROR 200 error on Google Chrome. I\'m not sure exactly what can provoke this erro
net::ERR_HTTP2_PROTOCOL_ERROR 200
By default nginx limits upload size to 1MB.
With client_max_body_size you can set your own limit, as in
client_max_body_size
location /uploads { ... client_max_body_size 100M; }
You can set this setting also on the http or server block instead (See here).
This fixed my issue with net::ERR_HTTP2_PROTOCOL_ERROR