Skip to content

Commit 0b048dd

Browse files
committed
doc: fix httpd typo
Httpd's listen addresses was wrongly declared as a list in `roles_cfg` in README. After the patch the typo was fixed.
1 parent 2f25cb0 commit 0b048dd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ groups:
4242
roles_cfg:
4343
roles.httpd:
4444
default:
45-
- listen: '127.0.0.1:8083'
45+
listen: '127.0.0.1:8083'
4646
additional:
47-
- listen: 8084
47+
listen: 8084
4848
roles.metrics-export:
4949
http:
5050
- endpoints:
@@ -131,9 +131,9 @@ section:
131131
roles_cfg:
132132
roles.httpd:
133133
default:
134-
- listen: 8081
134+
listen: 8081
135135
additional:
136-
- listen: '127.0.0.1:8082'
136+
listen: '127.0.0.1:8082'
137137
```
138138

139139
After it you can use `server` name in `roles.metrics-export` block. If `server` and `listen` names
@@ -157,9 +157,9 @@ Let's put it all together now:
157157
roles_cfg:
158158
roles.httpd:
159159
default:
160-
- listen: 8081
160+
listen: 8081
161161
additional:
162-
- listen: '127.0.0.1:8082'
162+
listen: '127.0.0.1:8082'
163163
roles.metrics-export:
164164
http:
165165
- listen: 8081

0 commit comments

Comments
 (0)