Add proxy_pass with rewrite for /bisq/api into nginx.conf

This commit is contained in:
wiz 2020-07-18 21:07:36 +09:00
parent 5198c3a5af
commit 4e6ba18f19
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -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;
}
}
}