Replace secret with secrets

master
Daniel Berteaud 10 years ago
parent 897fd7b02f
commit 6fa7a0b5c9
  1. 2
      vroom.pl

@ -1731,7 +1731,7 @@ get '/:room' => sub {
# use the templates defined in the config # use the templates defined in the config
push @{app->renderer->paths}, 'templates/'.$config->{'interface.template'}; push @{app->renderer->paths}, 'templates/'.$config->{'interface.template'};
# Set the secret used to sign cookies # Set the secret used to sign cookies
app->secret($config->{'cookie.secret'}); app->secrets([$config->{'cookie.secret'}]);
app->sessions->secure(1); app->sessions->secure(1);
app->sessions->cookie_name($config->{'cookie.name'}); app->sessions->cookie_name($config->{'cookie.name'});
app->hook(before_dispatch => sub { app->hook(before_dispatch => sub {

Loading…
Cancel
Save