From bf6369e36d223061529bec14bd1dcb6390ab8315 Mon Sep 17 00:00:00 2001 From: themilchenko Date: Tue, 12 Nov 2024 18:59:15 +0300 Subject: [PATCH] doc: fix typo in roles.httpd It was a typo in `roles.httpd` paragraph - listen addresses was wrongly declared as a list in `roles_cfg` target. After the patch list's markers was deleted. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ae7032..95c2ea4 100644 --- a/README.md +++ b/README.md @@ -533,9 +533,9 @@ Example of the configuration: roles_cfg: roles.httpd: default: - - listen: 8081 + listen: 8081 additional: - - listen: '127.0.0.1:8082' + listen: '127.0.0.1:8082' ``` Server address should be provided either as a URI or as a single port