Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am gh0stface on github.
  • I am gh0stface (https://keybase.io/gh0stface) on keybase.
  • I have a public key whose fingerprint is 2145 6604 86FE 792C A7FA C154 9AD8 148F D262 6122

To claim this, I am signing this object:

@gh0stface
gh0stface / install.sh
Created June 29, 2018 19:26 — forked from anhldbk/install.sh
Install Kong API Gateway on Ubuntu
sudo apt-get install netcat openssl libpcre3 dnsmasq procps perl
# for ubuntu 16.04 (xenial)
sudo apt-get -y install postgresql postgresql-contrib phppgadmin
sudo -i -u postgres
psql
CREATE USER kong; CREATE DATABASE kong OWNER kong;
ALTER USER kong WITH password 'kong';