From 251df33e4e8d6114c803f908331804d76879c177 Mon Sep 17 00:00:00 2001 From: Vikash Kothary Date: Tue, 8 Mar 2022 22:13:46 +0000 Subject: [PATCH] docs: Fix indentation in nginx example snippet --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3ab6078..28850c6 100644 --- a/README.md +++ b/README.md @@ -69,13 +69,13 @@ Installing ```nginx server { - listen 27701; - server_name default; - location / { - proxy_http_version 1.0; - proxy_pass http://127.0.0.1:27702/; - client_max_body_size 222M; - } + listen 27701; + server_name default; + location / { + proxy_http_version 1.0; + proxy_pass http://127.0.0.1:27702/; + client_max_body_size 222M; + } } ```