Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tripathyr authored Oct 24, 2023
1 parent bd1075b commit 1818d14
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 1818d14

Please sign in to comment.