Created
February 14, 2017 11:13
-
-
Save kanibaspinar/7ca2ee7e78c33d20f6e157281dd706e4 to your computer and use it in GitHub Desktop.
Nginx - HTTP2.0 Performance Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actualy this are valid...
http2_chunk_size 8k;
http2_body_preread_size 64k;
http2_max_concurrent_streams 128;
http2_recv_buffer_size 256k;