37 lines
1001 B
JavaScript
37 lines
1001 B
JavaScript
'use strict';
|
|
|
|
var app = require('../app');
|
|
|
|
//require('greenlock-express')
|
|
require('../greenlock.js').create({
|
|
|
|
// Let's Encrypt v2 is ACME draft 11
|
|
version: 'draft-11'
|
|
|
|
, server: 'https://acme-v02.api.letsencrypt.org/directory'
|
|
// Note: If at first you don't succeed, stop and switch to staging
|
|
// https://acme-staging-v02.api.letsencrypt.org/directory
|
|
|
|
// You MUST change this to a valid email address
|
|
, email: 'lukas.n912@gmail.com'
|
|
|
|
// You MUST NOT build clients that accept the ToS without asking the user
|
|
, agreeTos: true
|
|
|
|
// You MUST change these to valid domains
|
|
// NOTE: all domains will validated and listed on the certificate
|
|
, approvedDomains: [ 'www.smartshopper.cf', 'smartshopper.cf']
|
|
|
|
// You MUST have access to write to directory where certs are saved
|
|
// ex: /home/foouser/acme/etc
|
|
, configDir: '~/.config/acme/'
|
|
|
|
, app: app
|
|
|
|
// Get notified of important updates and help me make greenlock better
|
|
, communityMember: true
|
|
|
|
//, debug: true
|
|
|
|
}).listen(7000, 443);
|