Skip to content

Commit

Permalink
fix(admin) bind the kong admin api port to 127 (#1869)
Browse files Browse the repository at this point in the history
  • Loading branch information
hutchic committed Mar 25, 2020
1 parent 22ecff8 commit d693827
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/enterprise/1.3-x/deployment/installation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,8 @@ $ docker run -d --name kong-ee --network=kong-ee-net \
-e "KONG_ADMIN_GUI_URL=http://<DNSorIP>:8002" \
-p 8000:8000 \
-p 8443:8443 \
-p 8001:8001 \
-p 8444:8444 \
-p 127.0.0.1:8001:8001 \
-p 127.0.0.1:8444:8444 \
-p 8002:8002 \
-p 8445:8445 \
-p 8003:8003 \
Expand Down
8 changes: 4 additions & 4 deletions app/install/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ Here is a quick example showing how to connect a Kong container to a Cassandra o
-e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \
-p 8000:8000 \
-p 8443:8443 \
-p 8001:8001 \
-p 8444:8444 \
-p 127.0.0.1:8001:8001 \
-p 127.0.0.1:8444:8444 \
kong:latest
```

Expand Down Expand Up @@ -190,8 +190,8 @@ The steps involved in starting Kong in [DB-less mode] are the following:
-e "KONG_ADMIN_LISTEN=0.0.0.0:8001, 0.0.0.0:8444 ssl" \
-p 8000:8000 \
-p 8443:8443 \
-p 8001:8001 \
-p 8444:8444 \
-p 127.0.0.1:8001:8001 \
-p 127.0.0.1:8444:8444 \
kong:latest
```

Expand Down

0 comments on commit d693827

Please sign in to comment.