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 /docs/configuration.md | |
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 'docs/configuration.md')
-rw-r--r-- | docs/configuration.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/configuration.md b/docs/configuration.md index d237231..47ef38e 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -54,6 +54,13 @@ Sets the link used in the header of the page. If set to null no link will be used and the header will not be clickable. ```php +$config['frontpage']['peering_policy_file'] = null; +``` +Sets the path to the peering policy file. If set to null no peering policy +will be able to be shown. The peering policy file must be located in a +readable location and must contain only HTML formatted text. + +```php $config['frontpage']['disclaimer'] = 'Disclaimer example'; ``` Sets the disclaimer that should displayed. If set to null no disclaimer will |