-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use HTTP2 for all resources #131
Comments
According to https://httpd.apache.org/docs/2.4/howto/http2.html, I tried When you have a httpd built with mod_http2 you need some basic configuration for it becoming active. The first thing, as with every Apache module, is that you need to load it:
The second directive you need to add to your server configuration is
This allows h2, the secure variant, to be the preferred protocol on your server connections. When you want to enable all HTTP/2 variants, you simply write:
but it didn´t work |
|
Based on https://stackoverflow.com/questions/60345482/apache-http2-h2c-mode-not-working-properly, I tried:
|
Tried |
It seems apache is configured with prefork:
but mod_http2 doesn't work with mpm_prefork |
Tried to enable mpm_event:
|
MPM prefork vs worker vs event: https://serverfault.com/questions/383526/how-do-i-select-which-apache-mpm-to-use/383634#383634 |
| Use HTTP/2 for all resources | Potential savings of 1.6s |
https://miguelgfierro.com/ | http/1.1 |
https://miguelgfierro.com/static/blog/css/popup.min.css | http/1.1
https://miguelgfierro.com/static/blog/css/skeleton.min.css | http/1.1
https://miguelgfierro.com/static/blog/css/paper.min.css | http/1.1
https://miguelgfierro.com/static/blog/js/jquery.min.js | http/1.1
https://miguelgfierro.com/static/blog/js/popup.min.js | http/1.1
https://miguelgfierro.com/static/blog/img/hoap_front_small.png | http/1.1
https://miguelgfierro.com/static/blog/img/icon_search.png | http/1.1
https://miguelgfierro.com/static/blog/img/sprites_social_square.png | http/1.1
https://miguelgfierro.com/static/blog/font/cmunrm.woff | http/1.1
https://miguelgfierro.com/static/blog/img/favicon.ico | http/1.1
https://miguelgfierro.com/static/blog/img/apple-touch-icon.png | http/1.1
https://miguelgfierro.com/static/blog/font/cmunbx.woff | http/1.1
The text was updated successfully, but these errors were encountered: