mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-08 12:38:14 -05:00
![Jamie Curnow](/assets/img/avatar_default.png)
- 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'})
|
|
};
|