Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ HTTP APIs and Tools are available at the following port and paths:
- RPC: `http://localhost:8000/rpc`
- Lab: `http://localhost:8000/lab`
- Friendbot: `http://localhost:8000/friendbot`
- History Archive: `http://localhost:8000/history-archive` (available with `--local` only)

## Tags

Expand Down
7 changes: 7 additions & 0 deletions local/nginx/etc/conf.d/history-archive.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
location /history-archive {
rewrite /history-archive/(.*) /$1 break;
proxy_pass http://127.0.0.1:1570;
proxy_redirect off;
}

# Retained for backwards compatibility with existing tooling (e.g. stellar snapshot).
Comment thread
leighmcculloch marked this conversation as resolved.
Outdated
location /archive {
rewrite /archive/(.*) /$1 break;
proxy_pass http://127.0.0.1:1570;
Expand Down