GithubHelp home page GithubHelp logo

Comments (7)

statianzo avatar statianzo commented on May 29, 2024

To have live reload served over https, you need to add key and cert or pfx configuration options as stated in the readme.

https://github.com/statianzo/webpack-livereload-plugin#https

from webpack-livereload-plugin.

asos-hutber avatar asos-hutber commented on May 29, 2024

Ye, thanks @statianzo I did see this and tried to add random values, but I have no real idea what these are meant to be set to? I assumed something to do with https?

Also I realise how vague this statement is...

  const optionsReload = {
    key: true,
    cert: true
  };
      new LiveReloadPlugin(optionsReload),

from webpack-livereload-plugin.

asos-hutber avatar asos-hutber commented on May 29, 2024

I wonder if I'm meant to put the name of my cert or the path name?

from webpack-livereload-plugin.

statianzo avatar statianzo commented on May 29, 2024

cert is your ssl certificate of your certificate. String or Buffer, not the file path.
key is the private key of your certificate. String or Buffer, not the file path.

The options ultimately get passed to tls.createSecureContext. Those options are listed here. https://nodejs.org/api/tls.html#tls_tls_createsecurecontext_options

from webpack-livereload-plugin.

asos-hutber avatar asos-hutber commented on May 29, 2024

Thanks again @statianzo

So in the end we should expect something like this:

  const optionsReload = {
      cert: `-----BEGIN CERTIFICATE-----
      ...
      mFg5ieS9eijN7XULU/LF+G3b0bmyx4hhPTNM
      ...
      -----END CERTIFICATE-----`,
      key : `-----BEGIN RSA PRIVATE KEY-----
      ...
      JIuUft9LYhvojeOQC7G1BP3JBtou/9S8PE2DGVzLoo+G9jzfyjdk
      ...
      -----END RSA PRIVATE KEY-----`
  };

...

new LiveReloadPlugin(optionsReload),

As this is what I have, but the https url still fails.

from webpack-livereload-plugin.

asos-hutber avatar asos-hutber commented on May 29, 2024

humm weird, now the http fails :O

from webpack-livereload-plugin.

statianzo avatar statianzo commented on May 29, 2024

The plugin server maps to only one port, so it's http or https.

If both are necessary, you could use multiple livereload plugins with different port numbers. It's not a scenario I've tested though.

from webpack-livereload-plugin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.