Skip to content

Commit 9509e5a

Browse files
authored
Merge pull request #32 from tonlabs/0.28.2-rc
nginx.conf bugfix
2 parents aaf1f82 + d3f0e90 commit 9509e5a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes
22
All notable changes to this project will be documented in this file.
33

4+
## 0.28.2 May 18, 2021
5+
### Fixed
6+
- Fixed previous bugfix. If you still have an error running TON Live explorer, clear your browser cache.
7+
48
## 0.28.1 May 18, 2021
59
### Fixed
610
- reloading any page (except `/` and `/landing` page) failed with 404 error

docker/nginx.conf.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ http {
4545
types {
4646
application/wasm wasm;
4747
}
48-
try_files /index.html =404;
48+
try_files $uri $uri/ /index.html;
4949
root /var/www;
5050
}
5151
}

ton-node-se/ton_node_startup/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
build = "../build/build.rs"
33
name = "ton_node_startup"
4-
version = "0.28.1"
4+
version = "0.28.2"
55

66
[dependencies]
77
clap = "2.32.0"

0 commit comments

Comments
 (0)