mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-03 07:53:39 +00:00
15 lines
524 B
JavaScript
15 lines
524 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' }),
|
|
};
|