mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	pass options to express.static
This commit is contained in:
		
							
								
								
									
										3
									
								
								packages/node_modules/node-red/red.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								packages/node_modules/node-red/red.js
									
									
									
									
										vendored
									
									
								
							| @@ -427,6 +427,7 @@ httpsPromise.then(function(startupHttps) { | ||||
|             const sp = settings.httpStatic[si]; | ||||
|             const filePath = sp.path; | ||||
|             const thisRoot = sp.root || "/"; | ||||
|             const options = sp.options; | ||||
|             if(appUseMem[filePath + "::" + thisRoot]) { | ||||
|                 continue;// this path and root already registered! | ||||
|             } | ||||
| @@ -434,7 +435,7 @@ httpsPromise.then(function(startupHttps) { | ||||
|             if (settings.httpStaticAuth) { | ||||
|                 app.use(thisRoot, basicAuthMiddleware(settings.httpStaticAuth.user, settings.httpStaticAuth.pass)); | ||||
|             } | ||||
|             app.use(thisRoot, express.static(filePath)); | ||||
|             app.use(thisRoot, express.static(filePath, options)); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user