From 8ce57ccbe423a434e438e11b64875d897e910a4c Mon Sep 17 00:00:00 2001 From: Yassir Bolles Date: Fri, 24 May 2024 11:16:14 +0100 Subject: [PATCH] chore: Update /explorer & /wallet route redirect in nginx.conf --- nginx.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index a3fa2de8..70355289 100644 --- a/nginx.conf +++ b/nginx.conf @@ -7,8 +7,12 @@ server { try_files $uri $uri/ /index.html =404; } + location = /wallet/ { + return 301 /login + } + location = /explorer/ { - return 301 /explorer/c-chain; + return 301 /explorer/camino/c-chain; } include /etc/nginx/extra-conf.d/*.conf;