Your secret passphrase needs to be changed



examples/lite/hello_world_with_secret.pl
use Mojolicious::Lite;

get '/' => { text => 'Hello World' };
 
app->secrets(['My very secret passphrase.']);

app->start;