1.6.0 • Published 5 years ago

@fabrix/spool-greenlock v1.6.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

spool-greenlock

:package: Letsencrypt (greenlock) Spool for Fabrix

Gitter NPM version Build Status Test Coverage Dependency Status Follow @FabrixApp on Twitter

Configuration

You can configure letsencrypt under the file config/greenlock.ts (be sure it's added under config/index.ts or it will not be loaded)

Be sure to have spool-express installed and configured.

Here is a very simple example:

export const greenlock = {
  server: 'staging', // Set to https://acme-v01.api.letsencrypt.org/directory in production
  email: 'john.doe@example.com',
  agreeTos: true,
  approvedDomains: ['example.com', 'www.example.com']
}

More information about the configuration possibilities here: https://git.daplie.com/Daplie/node-greenlock

Usage

Add the spool under config/main.ts

// config/main.ts
export const main = {
  // ...
  spools: [
    require('spool-router').RouterSpool,
    require('spool-express').ExpressSpool,
    require('spool-greenlock').GreenlockSpool
  ]
}

Letsencrypt can work only if you use 443 as secure port and 80 as default port so be sure to set them correctly

Contributing

We love contributions! Please check out our Contributor's Guide for more information on how our projects are organized and how to get started.