mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
db23c9a52f
- 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'})
|
|
};
|