Update README.md

This commit is contained in:
tripathyr 2023-10-24 16:03:45 +05:30 committed by GitHub
parent bd1075ba8b
commit 1818d14e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,6 +130,22 @@ function broadcastTx(signedTxHash) {
}
```
# Websocket Connectivity issue with Nginx
- Nginx needs more directives to permit Websocket traffic to pass.
- `proxy_set_header Upgrade $http_upgrade;` AND `proxy_set_header Connection "upgrade";` must be set in location in nginx conf file
```
location / {
proxy_pass https://0.0.0.0:98765/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
```
# Blockbook
**Blockbook** is back-end service for Trezor wallet. Main features of **Blockbook** are: