From be72f7e62cc319935633df15e1bdbda7e62887dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Mikul=C3=A1=C5=A1ek?= Date: Sat, 28 Sep 2019 00:52:06 +0200 Subject: [PATCH] Fix nginx example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 98c2f96..928bc72 100644 --- a/README.md +++ b/README.md @@ -222,7 +222,7 @@ proxy.server = ( ``` ### nginx Example ``` -location /api/ { +location /api { proxy_pass http://127.0.0.1:8080/api; } ```