Questions tagged [h2o-http]

H2O is an optimized HTTP server with support for HTTP/1.x and HTTP/2.

H2O is an optimized HTTP server with support for HTTP/1.x and HTTP/2.

H2O is a new generation HTTP server. Not only is it very fast, it also provides much quicker response to end-users when compared to older generations of HTTP servers.

Written in C and licensed under the MIT License, it can also be used as a library.

For more information, please refer to the documentation at h2o.examp1e.net.

Official GitHub: https://github.com/h2o/h2o

3 questions
10
votes
1 answer

HTTP2 pushed webfonts not used

I'm sending a Link preload header in the HTTP2 response. Like this one: Link: ; rel=preload; as=script, ; rel=preload; as=font scripts, styles and images don't cause any…
snøreven
  • 1,904
  • 2
  • 19
  • 39
9
votes
1 answer

How do I write h2o webserver mruby handlers for WordPress multisite?

This is what Apache needs. I like to know how I do this in h2o. RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond…
redanimalwar
  • 1,229
  • 1
  • 12
  • 32
4
votes
3 answers

Nodejs http2 behind (nginx or otherwise Webserver) with Push in Nodejs

I am trying to update our online shop to use HTTP/2 with Server Push capabilities but I can't find a solution for a webserver like Nginx(for proxying and some other stuff) with upstream HTTP/2. We are using Node.js with the node HTTP module at the…