Skip to content

Commit

Permalink
doc: fix httpd typo
Browse files Browse the repository at this point in the history
Httpd's listen addresses was wrongly declared as a list in
`roles_cfg` in README.

After the patch the typo was fixed.
  • Loading branch information
themilchenko committed Nov 12, 2024
1 parent 2f25cb0 commit 0b048dd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ groups:
roles_cfg:
roles.httpd:
default:
- listen: '127.0.0.1:8083'
listen: '127.0.0.1:8083'
additional:
- listen: 8084
listen: 8084
roles.metrics-export:
http:
- endpoints:
Expand Down Expand Up @@ -131,9 +131,9 @@ section:
roles_cfg:
roles.httpd:
default:
- listen: 8081
listen: 8081
additional:
- listen: '127.0.0.1:8082'
listen: '127.0.0.1:8082'
```

After it you can use `server` name in `roles.metrics-export` block. If `server` and `listen` names
Expand All @@ -157,9 +157,9 @@ Let's put it all together now:
roles_cfg:
roles.httpd:
default:
- listen: 8081
listen: 8081
additional:
- listen: '127.0.0.1:8082'
listen: '127.0.0.1:8082'
roles.metrics-export:
http:
- listen: 8081
Expand Down

0 comments on commit 0b048dd

Please sign in to comment.