2
0
mirror of https://github.com/therootcompany/greenlock.js.git synced 2025-03-06 08:40:41 +00:00
greenlock.js/bin/tmpl/server.tmpl.js

19 lines
410 B
JavaScript
Raw Normal View History

'use strict';
require('greenlock-express')
.init(function() {
2019-11-05 02:50:27 -07:00
return {
greenlock: require('./greenlock.js'),
2019-11-05 02:50:27 -07:00
// whether or not to run at cloudscale
cluster: false
};
})
.ready(function(glx) {
var app = require('./app.js');
// Serves on 80 and 443
// Get's SSL certificates magically!
glx.serveApp(app);
});