From 4e6ba18f1905b8f60d2b41cdf9cd3e7f3df56fae Mon Sep 17 00:00:00 2001 From: wiz Date: Sat, 18 Jul 2020 21:07:36 +0900 Subject: [PATCH] Add proxy_pass with rewrite for /bisq/api into nginx.conf --- production/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/production/nginx.conf b/production/nginx.conf index 8aa887825..c3ac26230 100644 --- a/production/nginx.conf +++ b/production/nginx.conf @@ -223,5 +223,9 @@ http { location /testnet/api/ { proxy_pass http://[::1]:3002/; } + + location /bisq/api { + proxy_pass http://127.0.0.1:8999/api/v1/bisq; + } } }