Skip to content
This repository was archived by the owner on Feb 12, 2022. It is now read-only.

Commit e254390

Browse files
authored
Version 0.11 (#15)
* migrate to kong version-0.11 * Remove incompatible cjson Luarock; included w/ OpenResty anyway * πŸ“š doc buildpack fixes to Kong in one-off dynos * Remove older version of lua-resty-http Luarock * πŸ“š doc tweaks for Admin API * πŸ“š as of 0.11, networking requirements for clustering have been removed * Improve console admin UX * πŸ“š doc Authenticated Admin API * Send error logs to stderr * Get correct client IP from Heroku router * Enable example custom plugins * Custom Nginx config file; allow env vars for custom plugin * Remove broken example analytics plugin; replace with simple env var example in hello-world-header * Local dev experience * πŸ“š clarify status
1 parent 6f6db04 commit e254390

30 files changed

+1739
-1429
lines changed

β€Ž.buildpacksβ€Ž

Lines changed: 0 additions & 2 deletions
This file was deleted.

β€Ž.gitignoreβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
config/kong.yml
2-
config/cassandra.cert
1+
config/kong.conf
2+
logs/

β€Ž.luarocksβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
date 2.1.2
2-
lua-cjson 2.1.0
32
xml 1.1.3
4-
lua-resty-http 0.06

β€Ž.profile.localβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export PATH="$HOME/.luarocks/bin:$PATH"
2-
export LUA_PATH="./lib/?.lua;./lib/?/init.lua;$HOME/.luarocks/share/lua/5.1/?.lua;$HOME/.luarocks/share/lua/5.1/?/init.lua;/usr/local/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?/init.lua;./?.lua"
3-
export LUA_CPATH="./lib/?.so;$HOME/.luarocks/lib/lua/5.1/?.so;/usr/local/lib/lua/5.1/?.so;./?.so;/usr/local/lib/lua/5.1/loadall.so"
1+
export PATH="~/.luarocks/bin:${PATH:-}"
2+
export LUA_PATH="./lib/?.lua;./lib/?/init.lua;;"
3+
export LUA_CPATH="./lib/?.so;;"

β€ŽAptfileβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
jq

β€ŽLICENSEβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Heroku
3+
Copyright (c) 2017 Heroku
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

β€ŽProcfileβ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

β€ŽProcfile.webβ€Ž

Lines changed: 0 additions & 3 deletions
This file was deleted.

β€ŽREADME.mdβ€Ž

Lines changed: 175 additions & 154 deletions
Large diffs are not rendered by default.

β€Žbin/background-startβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
set -eu
3+
4+
KONG_NGINX_DAEMON=on kong start -c ${KONG_CONF:-config/kong.conf} $@

0 commit comments

Comments
Β (0)