9

Finally upgraded my webserver and php modules to support HTTP/2 ^^ Everything works fine.

Found out devrant.com doesn't support it though. @dfox

Comments
  • 1
  • 0
    Upgrade PHP modules to support http2? What
  • 0
    @Linux
    This:
    # apachectl stop
    # apt install php7.0-fpm
    # a2enmod proxy_fcgi setenvif
    # a2enconf php7.1-fpm
    # a2dismod php7.1
    # a2dismod mpm_prefork
    # a2enmod mpm_event
    # apachectl start

    It's not exactly updating php modules rather than changing the MPM for PHP.
  • 1
    @filthyranter
    PHP has nothing to do with http2 thou :)

    Glad to see another apachier btw :)
  • 2
    Have to look into what this would entail for us but will definitely work on it at some point. Have a few high priority items we’re working on at the moment but after that I’ll see when we can get it done.
  • 1
    @Linux I had to change the MPM though since the old prefork isn't supported by Apache anymore.
  • 3
    @dfox
    Do brotli compression too ;)
  • 1
    @Linux Or snappy or gzip or lz4
    I'm so much into compression btw
Add Comment