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/08/24 11:30:37 UTC

[apisix-dashboard] branch master updated: Update nginx.conf

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 439c234  Update nginx.conf
439c234 is described below

commit 439c234f65c2ced22c379530ee3a0318aedb4b6e
Author: 琚致远 <ju...@apache.org>
AuthorDate: Mon Aug 24 19:30:29 2020 +0800

    Update nginx.conf
---
 docker/nginx.conf | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/docker/nginx.conf b/docker/nginx.conf
index 6efafa3..3848aa6 100644
--- a/docker/nginx.conf
+++ b/docker/nginx.conf
@@ -14,4 +14,8 @@ server {
     location / {
         try_files $uri $uri/ /index.html;
     }
+
+    location /apisix/admin {
+        proxy_pass http://manager:8080/apisix/admin;
+    }
 }