Skip to content

Options

Available CLI parameters

Name Description
email Email address to be shown on the maintenance message

With the first parameter you can pass on the email address to show in the maintenance message. If you don't pass any parameters the command will ask for an email address. You can still leave this empty to show a generic message.

Example usage: kirby x:down support@getkirby.com

Available config options

Config namespace: genxbe.kx-devutils

Name Default Description
maintenance true Disable or enable the possibility* for maintenance mode

Possibility for maintenance

With this we mean you can enable/disable the ability to go use maintenance mode. This does not mean that the website is in maintenance mode. This is done with the kirby x:down command.

Example configuration

site/config/config.php
<?php
return [
    ...
    'genxbe.kx-devutils' => [
        'maintenance' => false,
    ],
    ...
];