mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Syntax error in documentation (#9145)
just found a little syntax error in the docs, nothing special :) DO NOT DELETE THIS TEXT #### Please note > Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting. - [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/) #### Testers If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 9145`
This commit is contained in:
@@ -208,7 +208,7 @@ Note: To use HTML emails you must set HTML email to Yes in the WebUI under Globa
|
||||
|
||||
Note: To include Graphs you must enable unauthorized graphs in config.php. Allow_unauth_graphs_cidr is optional, but more secure.
|
||||
```
|
||||
$config['allow_unauth_graphs_cidr'] = array(127.0.0.1/32');
|
||||
$config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32');
|
||||
$config['allow_unauth_graphs'] = true;
|
||||
```
|
||||
|
||||
|
||||
@@ -246,7 +246,7 @@ Note: To use HTML emails you must set HTML email to Yes in the WebUI under Globa
|
||||
|
||||
Note: To include Graphs you must enable unauthorized graphs in config.php. Allow_unauth_graphs_cidr is optional, but more secure.
|
||||
```
|
||||
$config['allow_unauth_graphs_cidr'] = array(127.0.0.1/32');
|
||||
$config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32');
|
||||
$config['allow_unauth_graphs'] = true;
|
||||
```
|
||||
|
||||
|
||||
@@ -274,7 +274,7 @@ $config['auth_ldap_cache_ttl'] = 300;
|
||||
|
||||
## View/embedded graphs without being logged into LibreNMS
|
||||
```php
|
||||
$config['allow_unauth_graphs_cidr'] = array(127.0.0.1/32');
|
||||
$config['allow_unauth_graphs_cidr'] = array('127.0.0.1/32');
|
||||
$config['allow_unauth_graphs'] = true;
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user