mirror of
				https://github.com/therootcompany/greenlock-express.js.git
				synced 2024-11-16 17:28:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
"use strict";
 | 
						|
 | 
						|
//require("greenlock-express")
 | 
						|
require("../../")
 | 
						|
    .init({
 | 
						|
        packageRoot: __dirname,
 | 
						|
        configDir: "./greenlock.d",
 | 
						|
 | 
						|
        maintainerEmail: "jon@example.com",
 | 
						|
 | 
						|
        // When you're ready to go full cloud scale, you just change this to true:
 | 
						|
        // Note: in cluster you CANNOT use in-memory state (see below)
 | 
						|
        cluster: true,
 | 
						|
 | 
						|
        // This will default to the number of workers being equal to
 | 
						|
        // n-1 cpus, with a minimum of 2
 | 
						|
        workers: 4
 | 
						|
    })
 | 
						|
    // ready is only executed by workers (no-op in master)
 | 
						|
    .ready(httpsWorker)
 | 
						|
    // master is only executed by master (no-op in a worker)
 | 
						|
    .master(function() {
 | 
						|
        console.info("I'm the master");
 | 
						|
    });
 | 
						|
 | 
						|
function httpsWorker(glx) {
 | 
						|
    // WRONG
 | 
						|
    // This won't work like you
 | 
						|
    // think because EACH worker
 | 
						|
    // has ITS OWN `count`.
 | 
						|
    var count = 0;
 | 
						|
 | 
						|
    var app = function(req, res) {
 | 
						|
        res.end("Hello... how many times now? Oh, " + count + " times");
 | 
						|
        count += 1;
 | 
						|
    };
 | 
						|
 | 
						|
    // Serves on 80 and 443... for each worker
 | 
						|
    // Get's SSL certificates magically!
 | 
						|
    glx.serveApp(app);
 | 
						|
}
 |