diff options
author | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-03-14 12:53:55 +0100 |
---|---|---|
committer | Guillaume Mazoyer <gmazoyer@gravitons.in> | 2016-03-14 12:53:55 +0100 |
commit | b1bb5fdc0ab52342ae17da470f8368e75d9172c8 (patch) | |
tree | b953fc5c90ab1fa061b67e8a967b73394659df49 /includes | |
parent | 30a0e57a35215cf4efcaa5c3ab1e4cd4eba4e4cc (diff) |
Peering Policy configuration options.
Add configuration variable to set the path to a file containing a peering
policy. This file must be readable by the webserver and must contain HTML
formatted text (on which CSS rules will be applied).
If the variable is set to null, no peering policy will be displayed.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/config.defaults.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/includes/config.defaults.php b/includes/config.defaults.php index 9e44343..25eaf6f 100644 --- a/includes/config.defaults.php +++ b/includes/config.defaults.php @@ -46,6 +46,8 @@ $config = array( 'image' => null, // Link for the title/image 'header_link' => null, + // Peering Policy file (null for no peering policy) + 'peering_policy_file' => null, // Disclaimer (null for no disclaimer) 'disclaimer' => 'Disclaimer example', // Display the title |