Skip to content

Instantly share code, notes, and snippets.

@kanibaspinar
Created February 14, 2017 11:13
Show Gist options
  • Save kanibaspinar/7ca2ee7e78c33d20f6e157281dd706e4 to your computer and use it in GitHub Desktop.
Save kanibaspinar/7ca2ee7e78c33d20f6e157281dd706e4 to your computer and use it in GitHub Desktop.
Nginx - HTTP2.0 Performance Configuration
# Please do not use http2 integration with nginx. Available in http and server ranges.
# Bu ayarları http2 etkin edilmeden kullanmayın. Aksi durumda performans ve erişim sorunları yaşarsınız.
http2_chunk_size 8k;
http2_body_preread_size 64k;
http2_idle_timeout 3m;
http2_max_concurrent_streams 128;
http2_max_header_size 16k;
http2_max_field_size 4k;
http2_recv_buffer_size 256k;
http2_max_requests 100000;
http2_recv_timeout 30s;
@nettoinfo
Copy link

Actualy this are valid...
http2_chunk_size 8k;
http2_body_preread_size 64k;
http2_max_concurrent_streams 128;
http2_recv_buffer_size 256k;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment