mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 09:25:15 +00:00 
			
		
		
		
	- Added a script to install every single plugin, used in development and debugging - Improved certbot plugin install commands - Adjusted some version for plugins to install properly - It's noted that some plugins require deps that do not match other plugins, however these use cases should be extremely rare
		
			
				
	
	
		
			15 lines
		
	
	
		
			530 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			530 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const {Signale} = require('signale');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
	global:    new Signale({scope: 'Global   '}),
 | 
						|
	migrate:   new Signale({scope: 'Migrate  '}),
 | 
						|
	express:   new Signale({scope: 'Express  '}),
 | 
						|
	access:    new Signale({scope: 'Access   '}),
 | 
						|
	nginx:     new Signale({scope: 'Nginx    '}),
 | 
						|
	ssl:       new Signale({scope: 'SSL      '}),
 | 
						|
	certbot:   new Signale({scope: 'Certbot  '}),
 | 
						|
	import:    new Signale({scope: 'Importer '}),
 | 
						|
	setup:     new Signale({scope: 'Setup    '}),
 | 
						|
	ip_ranges: new Signale({scope: 'IP Ranges'})
 | 
						|
};
 |