Settings

Theme

HTTP/2 Server Push on Netlify

netlify.com

64 points by calavera 8 years ago · 23 comments

Reader

jitl 8 years ago

> It’s important to understand that HTTP/2 requires secure connectivity. Only websites with HTTPS enabled can take advantage of HTTP/2 and its performance optimizations, like server push and header compression.

Pedantically, this is not correct. HTTP/2 does not mandate any encryption. But, all the browser vendors only support HTTP/2 with TLS. https://http2.github.io/faq/#does-http2-require-encryption

  • richardwhiuk 8 years ago

    If you assume the second sentence explains the first, then this is correct - only websites (i.e something designed to be consumed by browsers) with HTTPS can take advantage of HTTP/2.

    • fredliu 8 years ago

      This is true, but no mandate on encryption in the HTTP/2 standard was an deliberate decision, one of the very few differences between HTTP/2 and SPDY. But yes, practically, you can't use HTTP/2 without encryption nowadays.

thearrow 8 years ago

How do people go about sending Link headers / configuring server push for resources with a changing hash in their filenames?

For example if you have your app.ab9a9a09fe9.js file, but then the next deploy you have your app.ba293dcde.js file... can you just set the resource to app.*.js somehow?

  • Svenskunganka 8 years ago

    You can make it part of your build process to generate a file with the headers needed, and during deploy it gets copied and/or configures the web server/platform you're running on.

  • treve 8 years ago

    If you can write a <script> tag that references app.ab9a9a09fe9.js, presumably you can write a HTTP header that references that same file, no?

    • thearrow 8 years ago

      For example: a SPA webpack setup using html-webpack-plugin which generates the <script> tags in index.html for the different assets, later served by nginx or similar.

      How does one tell nginx the names of the files to push if they are generated dynamically? You have to put the names in a separate file and then somehow configure the server using that file?

    • calaveraOP 8 years ago

      this webpack plugin might help you: https://gist.github.com/Kamshak/35630ec21df8dca27de3bb915f2d...

      I have no idea why the original comment by the author is shadow banned.

    • waxjar 8 years ago

      What about a static website served through nginx, for example?

      • StavrosK 8 years ago

        I'm actually just doing that right now (changing my static website to work with Netlify's Push). Presumably, your base HTML looks something like this:

          <link href="{{ "main.css"|asseturl }}" rel="stylesheet" type="text/css" />
        
        Then, your _headers.j2 file should look like this:

          /*
            Link: <{{ "main.css"|asseturl }}>; rel=preload; as=stylesheet
        
        Which will just be replaced with the correct value, same as in your HTML template.
  • Kamshak 8 years ago

    I suppose you are using webpack, i have just written a small plugin for this (assumes an SPA, writes the same js/css to /*): https://gist.github.com/Kamshak/35630ec21df8dca27de3bb915f2d...

OJFord 8 years ago

> Developers love using the CLI because everything can be done from the command line.

What? Do users also love the UI because everything can be done by the user?

StavrosK 8 years ago

This is welcome, but doesn't seem to be ready. My site broke with SPDY errors (wth?) when I enabled this.

  • calaveraOP 8 years ago

    Hey StavrosK, don't hesitate to reach out to Netlify support. I'd love to take a look at your site to figure out what's going on there.

    • StavrosK 8 years ago

      Yep, I already talked to Chris about it, thanks! I talked to you guys a week ago about HTTP/2 Push, I didn't know you'd have it ready so soon. I'm eager to get this working on stavros.io, so please feel free to email me so we can debug this!

      • calaveraOP 8 years ago

        I just deployed a change that we think it should fix the problem in your site, we're going to keep an eye on it \o/

judahtanthony 8 years ago

How does Netlify handle caching of push file? I would love to push my global.css and global.js; however, I don't want those files to be pushed on every subsequent request.

ezequiel-garzon 8 years ago

Do any browsers already provide a way to refuse pushed resources?

thinkMOAR 8 years ago

"You can read this article in the next version of Smashing Magazine, completely hosted on Netlify."

No actually quite a few resources are served by third parties.

Zpalmtree 8 years ago

I read this as Netflix and was very confused for a while.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection