mirror of
				https://github.com/therootcompany/greenlock-express.js.git
				synced 2024-11-16 17:28:59 +00:00 
			
		
		
		
	catch request errors
This commit is contained in:
		
							parent
							
								
									778416d49b
								
							
						
					
					
						commit
						6cdbe36e6c
					
				
							
								
								
									
										26
									
								
								index.js
									
									
									
									
									
								
							
							
						
						
									
										26
									
								
								index.js
									
									
									
									
									
								
							| @ -53,9 +53,14 @@ module.exports.create = function(opts) { | ||||
| 			console.warn("'" + p + "' doesn't seem to be a valid port number, socket path, or pipe"); | ||||
| 		} | ||||
| 
 | ||||
| 		server = require("http").createServer( | ||||
| 			greenlock.middleware.sanitizeHost(greenlock.middleware(require("redirect-https")())) | ||||
| 		); | ||||
| 		var mw = greenlock.middleware.sanitizeHost(greenlock.middleware(require("redirect-https")())); | ||||
| 		server = require("http").createServer(function(req, res) { | ||||
| 			req.on("error", function(err) { | ||||
| 				console.error("Insecure Request Network Connection Error:"); | ||||
| 				console.error(err); | ||||
| 			}); | ||||
| 			mw(req, res); | ||||
| 		}); | ||||
| 		httpType = "http"; | ||||
| 
 | ||||
| 		return { | ||||
| @ -208,9 +213,8 @@ module.exports.create = function(opts) { | ||||
| 				); | ||||
| 			} | ||||
| 		} | ||||
| 		server = https.createServer( | ||||
| 			greenlock.tlsOptions, | ||||
| 			greenlock.middleware.sanitizeHost(function(req, res) { | ||||
| 
 | ||||
| 		var mw = greenlock.middleware.sanitizeHost(function(req, res) { | ||||
| 			try { | ||||
| 				greenlock.app(req, res); | ||||
| 			} catch (e) { | ||||
| @ -224,8 +228,14 @@ module.exports.create = function(opts) { | ||||
| 					// (headers may have already been sent, etc)
 | ||||
| 				} | ||||
| 			} | ||||
| 			}) | ||||
| 		); | ||||
| 		}); | ||||
| 		server = https.createServer(greenlock.tlsOptions, function(req, res) { | ||||
| 			req.on("error", function(err) { | ||||
| 				console.error("HTTPS Request Network Connection Error:"); | ||||
| 				console.error(err); | ||||
| 			}); | ||||
| 			mw(req, res); | ||||
| 		}); | ||||
| 		server.type = httpType; | ||||
| 
 | ||||
| 		return { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user