<?php
/**
 * Retour Configuration
 *
 * Completely optional configuration settings for Retour if you want to customize some
 * of its more esoteric behavior, or just want specific control over things.
 *
 * Don't edit this file, instead copy it to 'craft/config' as 'retour.php' and make
 * your changes there.
 */

return array(

/**
 * Controls whether Retour automatically creates static redirects when an entry's URI changes.
 */
    "createUriChangeRedirects" => true,

/**
 * How many stats should be stored
 */

    "statsStoredLimit" => 10000,

/**
 * How many stats to display in the Admin CP
 */

    "statsDisplayLimit" => 1000,

/**
 * How many static redirects to display in the Admin CP
 */

    "staticRedirectDisplayLimit" => 100,

/**
 * How many dynamic redirects to display in the Admin CP
 */
    "dynamicRedirectDisplayLimit" => 100,
);
