MUP auto extend let's encrypt

84 views Asked by At

I need to auto extend my certificates but without manually configuring certbot or any action that would require me to SSH into the server. How is or possible to do it only using the mup config file and maybe hooks + js files?

1

There are 1 answers

2
Christian Fritz On

Meteor-up (mup) does so automatically. A configuration like this works for me in mup.js:

  proxy: {
    domains: 'example.com,www.example.com,example.org',
    ssl: {
      letsEncryptEmail: '[email protected]'
    }
  }