Use space for indentation

This commit is contained in:
Alex D. 2021-07-09 12:58:38 +00:00
parent d6b1a4932c
commit d21d9614a8
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 41 additions and 41 deletions

View File

@ -26,46 +26,46 @@ Here's a example that you may modify to your needs.
```json ```json
{ {
"route": [ "route": [
"fdaa:bbcc:ddee::/48": { "fdaa:bbcc:ddee::/48": {
"description": "My home network", "description": "My home network",
"device": [ "device": [
"router": { "router": {
"description": "My custom router running BIRD", "description": "My custom router running BIRD",
"address": "fdaa:bbcc:ddee::1" "address": "fdaa:bbcc:ddee::1"
}, },
"mail": { "mail": {
"description": "Electronic mail endpoint", "description": "Electronic mail endpoint",
"address": "fdaa:bbcc:ddee::5", "address": "fdaa:bbcc:ddee::5",
"service": [ "service": [
{ {
"type": "smtp", "type": "smtp",
"endpoint": [ "endpoint": [
{ "port": 25 } { "port": 25 }
] ]
}, },
{ {
"description": "Super-secret authentication gateway", "description": "Super-secret authentication gateway",
"type": "kerberos", "type": "kerberos",
"endpoint": [ "endpoint": [
{ "port": 89 } { "port": 89 }
] ]
}, },
{ {
"type": "imap", "type": "imap",
"endpoint": [ "endpoint": [
{ "port": 143 } { "port": 143 }
] ]
} }
] ]
} }
] ]
}, },
"fdcc:ba11:b00b::/48": { "fdcc:ba11:b00b::/48": {
"device": [ "device": [
"router": "fdcc:ba11:b00b::1" "router": "fdcc:ba11:b00b::1"
] ]
} }
] ]
} }
``` ```