diff --git a/CHANGELOG.md b/CHANGELOG.md index afcfa49..7f81cb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Release Notes All notable changes to this project will be documented in this file. +## 0.28.1 May 18, 2021 +### Fixed +- reloading any page (except `/` and `/landing` page) failed with 404 error + ## 0.28.0 May 15, 2021 ### New - Predeployed [SafeMultisigWallet](contracts/safe_multisig) contract with 1 million tokens. diff --git a/docker/nginx.conf.d b/docker/nginx.conf.d index c1e71e4..209ce8b 100644 --- a/docker/nginx.conf.d +++ b/docker/nginx.conf.d @@ -45,8 +45,7 @@ http { types { application/wasm wasm; } - rewrite /landing.html / last; - rewrite /landing / last; + try_files /index.html =404; root /var/www; } } diff --git a/ton-node-se/ton_node_startup/Cargo.toml b/ton-node-se/ton_node_startup/Cargo.toml index 3c2962e..3d14180 100644 --- a/ton-node-se/ton_node_startup/Cargo.toml +++ b/ton-node-se/ton_node_startup/Cargo.toml @@ -1,7 +1,7 @@ [package] build = "../build/build.rs" name = "ton_node_startup" -version = "0.28.0" +version = "0.28.1" [dependencies] clap = "2.32.0"