You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/06/15 04:22:04 UTC

[incubator-apisix-dashboard] branch next updated: feat: update default port

This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/incubator-apisix-dashboard.git


The following commit(s) were added to refs/heads/next by this push:
     new 32e793e  feat: update default port
32e793e is described below

commit 32e793e7193efda0514b7f8f34d7a870ce5a8c44
Author: juzhiyuan <jj...@gmail.com>
AuthorDate: Mon Jun 15 12:19:55 2020 +0800

    feat: update default port
---
 src/pages/Setting/service.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pages/Setting/service.ts b/src/pages/Setting/service.ts
index 3cef795..8d2d146 100644
--- a/src/pages/Setting/service.ts
+++ b/src/pages/Setting/service.ts
@@ -1,7 +1,7 @@
 export const getAdminAPIConfig = (): Setting.AdminAPI => {
   return {
     schema: localStorage.getItem('GLOBAL_ADMIN_API_SCHEMA') || 'http',
-    host: localStorage.getItem('GLOBAL_ADMIN_API_HOST') || '127.0.0.1:9080',
+    host: localStorage.getItem('GLOBAL_ADMIN_API_HOST') || '127.0.0.1:8080',
     path: localStorage.getItem('GLOBAL_ADMIN_API_PATH') || '/apisix/admin',
     key: localStorage.getItem('GLOBAL_ADMIN_API_KEY') || '',
   };