in reply to Catalyst : Could not find authentication realm 'default'

Just stumbled over this. It is vital to load ConfigLoader plugin before Authentication plugin:

use Catalyst qw/ ConfigLoader Authentication /;

The configuration is not loaded if the order doesn't tell.