From c8666d407969041759dab95506e0f662b2bcf80c Mon Sep 17 00:00:00 2001 From: wiz Date: Tue, 25 Feb 2020 01:09:49 +0900 Subject: [PATCH] Add nginx proxy_pass for /electrs -> localhost port 3000 --- nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx.conf b/nginx.conf index f1d105355..66918666a 100644 --- a/nginx.conf +++ b/nginx.conf @@ -65,6 +65,10 @@ http { proxy_pass http://127.0.0.1:8999/api; } + location /electrs/ { + proxy_pass http://127.0.0.1:3000/; + } + location /ws { proxy_pass http://127.0.0.1:8999/; proxy_http_version 1.1;