fix: Ajout proxy nginx pour blindbit-oracle et correction configuration sdk_relay
- Ajout d'un proxy nginx pour rediriger l'endpoint racine de blindbit-oracle - Modification de la configuration sdk_relay pour utiliser blindbit-proxy - Ajout de telnet dans l'image sdk_relay pour le healthcheck - Correction de l'URL blindbit-oracle dans la configuration - Ajout du fichier de configuration exemple
This commit is contained in:
parent
1e186b9587
commit
8058d3abd7
@ -58,12 +58,28 @@ services:
|
|||||||
retries: 10
|
retries: 10
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
sdk_relay:
|
blindbit-proxy:
|
||||||
image: git.4nkweb.com/4nk/sdk_relay:debug
|
image: nginx:alpine
|
||||||
container_name: sdk_relay
|
container_name: blindbit-proxy
|
||||||
depends_on:
|
depends_on:
|
||||||
blindbit:
|
blindbit:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
|
volumes:
|
||||||
|
- ./nginx-proxy.conf:/etc/nginx/nginx.conf:ro
|
||||||
|
networks:
|
||||||
|
btcnet:
|
||||||
|
aliases:
|
||||||
|
- blindbit-proxy
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:8001:8000"
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
sdk_relay:
|
||||||
|
image: git.4nkweb.com/4nk/sdk_relay:ext
|
||||||
|
container_name: sdk_relay
|
||||||
|
depends_on:
|
||||||
|
blindbit-proxy:
|
||||||
|
condition: service_started
|
||||||
bitcoin:
|
bitcoin:
|
||||||
condition: service_healthy
|
condition: service_healthy
|
||||||
volumes:
|
volumes:
|
||||||
@ -93,7 +109,7 @@ services:
|
|||||||
exec /usr/local/bin/sdk_relay --config /home/bitcoin/.conf 2>&1 | tee -a /home/bitcoin/.4nk/logs/sdk_relay.log
|
exec /usr/local/bin/sdk_relay --config /home/bitcoin/.conf 2>&1 | tee -a /home/bitcoin/.4nk/logs/sdk_relay.log
|
||||||
'
|
'
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8091/health"]
|
test: ["CMD", "timeout", "5", "telnet", "localhost", "8090"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
timeout: 10s
|
timeout: 10s
|
||||||
retries: 3
|
retries: 3
|
||||||
@ -161,7 +177,7 @@ services:
|
|||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
|
||||||
sdk_storage:
|
sdk_storage:
|
||||||
image: git.4nkweb.com/4nk/sdk_storage:latest
|
image: git.4nkweb.com/4nk/sdk_storage:ext
|
||||||
container_name: sdk_storage
|
container_name: sdk_storage
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:8081:8081"
|
- "127.0.0.1:8081:8081"
|
||||||
|
31
nginx-proxy.conf
Normal file
31
nginx-proxy.conf
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
events {
|
||||||
|
worker_connections 1024;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
upstream blindbit {
|
||||||
|
server blindbit-oracle:8000;
|
||||||
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 8000;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://blindbit/utxos/136294;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /utxos/ {
|
||||||
|
proxy_pass http://blindbit;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /filter/ {
|
||||||
|
proxy_pass http://blindbit;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -2,7 +2,7 @@ core_url="http://bitcoin:38332"
|
|||||||
ws_url="0.0.0.0:8090"
|
ws_url="0.0.0.0:8090"
|
||||||
wallet_name="default"
|
wallet_name="default"
|
||||||
network="signet"
|
network="signet"
|
||||||
blindbit_url="http://blindbit:8000"
|
blindbit_url="http://blindbit-proxy:8000"
|
||||||
zmq_url="tcp://bitcoin:29000"
|
zmq_url="tcp://bitcoin:29000"
|
||||||
storage="https://dev4.4nkweb.com/storage"
|
storage="https://dev4.4nkweb.com/storage"
|
||||||
data_dir="/home/bitcoin/.4nk"
|
data_dir="/home/bitcoin/.4nk"
|
||||||
|
16
relay/sdk_relay.conf.exemple
Normal file
16
relay/sdk_relay.conf.exemple
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
core_url="http://bitcoin:38332"
|
||||||
|
ws_url="0.0.0.0:8090"
|
||||||
|
wallet_name="default"
|
||||||
|
network="signet"
|
||||||
|
blindbit_url="http://localhost:8000"
|
||||||
|
zmq_url="tcp://bitcoin:29000"
|
||||||
|
storage="https://dev4.4nkweb.com/storage"
|
||||||
|
data_dir="/home/bitcoin/.4nk"
|
||||||
|
bitcoin_data_dir="/home/bitcoin/.bitcoin"
|
||||||
|
bootstrap_url="ws://dev3.4nkweb.com:8090"
|
||||||
|
bootstrap_faucet=true
|
||||||
|
RUST_LOG="DEBUG,reqwest=DEBUG,tokio_tungstenite=DEBUG"
|
||||||
|
NODE_OPTIONS="--max-old-space-size=2048"
|
||||||
|
|
||||||
|
SIGNER_API_KEY="your-api-key-change-this"
|
||||||
|
VITE_JWT_SECRET_KEY="52b3d77617bb00982dfee15b08effd52cfe5b2e69b2f61cc4848cfe1e98c0bc9"
|
Loading…
x
Reference in New Issue
Block a user