Browse Source

chore(*) update contents

* Update old references to Mashape
* Update Kong logo
* Update instructions for running Kong
Guilherme Salazar 7 years ago
parent
commit
b07e98d17e
4 changed files with 15 additions and 7 deletions
  1. 13 5
      kong/content.md
  2. 1 1
      kong/github-repo
  3. BIN
      kong/logo.png
  4. 1 1
      kong/maintainer.md

+ 13 - 5
kong/content.md

@@ -1,8 +1,8 @@
 # What is Kong?
 
-Kong is a scalable, open source API Layer (also known as an API Gateway, or API Middleware). Kong was originally built at Mashape to secure, manage and extend over 15,000 Microservices for its API Marketplace, which generates billions of requests per month.
+Kong is a scalable, open source API Layer (also known as an API Gateway, or API Middleware). Kong was originally built by [Kong Inc.](https://konghq.com) (formerly known as Mashape) to secure, manage and extend over 15,000 Microservices for its API Marketplace, which generates billions of requests per month.
 
-Backed by the battle-tested NGINX with a focus on high performance, Kong was made available as an open-source platform in 2015. Under active development, Kong is now used in production at hundreds of organizations from startups, to large enterprises and government departments including: The New York Times, Expedia, Healthcare.gov, The Guardian, Condè Nast and The University of Auckland.
+Backed by the battle-tested NGINX with a focus on high performance, Kong was made available as an open-source platform in 2015. Under active development, Kong is now used in production at hundreds of organizations from startups, to large enterprises and government departments including: The New York Times, Expedia, Healthcare.gov, The Guardian, Condè Nast, The University of Auckland, Ferrari, and Giphy.
 
 Kong's documentation can be found at [getkong.org/docs](http://getkong.org/docs).
 
@@ -64,7 +64,12 @@ $ docker run -d --name kong \
     --link kong-database:kong-database \
     -e "KONG_DATABASE=cassandra" \
     -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \
-    -e "KONG_PG_HOST=kong-database" \
+    -e "KONG_PROXY_ACCESS_LOG=/dev/stdout" \
+    -e "KONG_ADMIN_ACCESS_LOG=/dev/stdout" \
+    -e "KONG_PROXY_ERROR_LOG=/dev/stderr" \
+    -e "KONG_ADMIN_ERROR_LOG=/dev/stderr" \
+    -e "KONG_ADMIN_LISTEN=0.0.0.0:8001" \
+    -e "KONG_ADMIN_LISTEN_SSL=0.0.0.0:8444" \
     -p 8000:8000 \
     -p 8443:8443 \
     -p 8001:8001 \
@@ -82,14 +87,17 @@ You can override any property of the [Kong configuration file](http://getkong.or
 
 ```shell
 $ docker run -d --name kong \
+    -e "KONG_DATABASE=postgres"
+    -e "KONG_PG_HOST=kong-database" \
     -e "KONG_LOG_LEVEL=info" \
     -e "KONG_CUSTOM_PLUGINS=helloworld" \
     -e "KONG_PG_HOST=1.1.1.1" \
+    -e "KONG_ADMIN_LISTEN=0.0.0.0:8001" \
+    -e "KONG_ADMIN_LISTEN_SSL=0.0.0.0:8444" \
     -p 8000:8000 \
     -p 8443:8443 \
     -p 8001:8001 \
-    -p 7946:7946 \
-    -p 7946:7946/udp \
+    -p 8444:8444 \
     %%IMAGE%%
 ```
 

+ 1 - 1
kong/github-repo

@@ -1 +1 @@
-https://github.com/Mashape/kong
+https://github.com/kong/kong

BIN
kong/logo.png


+ 1 - 1
kong/maintainer.md

@@ -1 +1 @@
-[the Mashape Docker Maintainers](%%GITHUB-REPO%%)
+[the Kong Docker Maintainers](%%GITHUB-REPO%%)