Heroku Buildpack for Kong
Deploy Kong 0.14 Community Edition as a Heroku app.
🌈 This buildpack now deploys genuine Mashape Kong, built from source on Github; patches are no longer required for compatibility with Heroku.
🔬👩💻 This software is a community proof-of-concept: MIT license
Deploy the heroku-kong app to get started.
Create a new git repo and Heroku app:
APP_NAME=my-kong-gateway # name this something unique for your app
mkdir $APP_NAME
cd $APP_NAME
git init
heroku create $APP_NAME
heroku buildpacks:set https://github.com/heroku/heroku-buildpack-kong.git
heroku addons:create heroku-postgresql:hobby-dev
Create the file config/kong.conf.etlua
based on the sample config file. This is a config template which generates config/kong.conf
at runtime.
git add config/kong.conf.etlua
echo '# Kong Proxy' > README.md
git add README.md
git commit -m '🐒'
git push heroku master
🚀 Check heroku logs
and heroku open
to verify Kong launches.
- Kong plugins
- Development guide
lib/kong/plugins/{NAME}
- Add each Kong plugin name to the
custom_plugins
comma-separated list inconfig/kong.conf.etlua
- See: Plugin File Structure
- Lua rocks
- specify in the app's
Rockfile
- each line is
{NAME} {VERSION}
- specify in the app's
- Other Lua source modules
lib/{NAME}.lua
orlib/{NAME}/init.lua
PORT
exposed on the app/dyno- set automatically by the Heroku dyno manager
KONG_GIT_URL
git repo URL for Kong source- example
https://github.com/Mashape/kong.git
- example
KONG_GIT_COMMITISH
git branch/tag/commit for Kong source- example
master
- example
DATABASE_URL
- set automatically by Heroku Postgres add-on
To use env vars within your own code.
- Whitelist the variable name for use within Nginx
- In a custom Nginx config file add
env MY_VARIABLE;
- See: Nginx config (below)
- In a custom Nginx config file add
- Access the variable in Lua plugins
- Use
os.getenv('MY_VARIABLE')
to retrieve the value.
- Use
Kong is an Nginx-based application. To customize the underlying Nginx configuration, commit the file config/nginx.template
with contents based on the docs or this included sample.
This buildpack supports Heroku CI to automate test runs and integrate with deployment workflow.
Tests should follow the Kong plugin testing guide.
App requirements:
spec/kong_tests.conf
must contain the Kong configuration for running tests
See: sample Heroku Kong app which contains a complete test suite.
The first time this buildpack builds an app, the build time will be significantly longer as Kong and its dependencies are compiled from source. The compiled artifacts are cached to speed up subsequent builds.
We vendor the sources for Lua, LuaRocks, & OpenResty/Nginx and compile them with a writable /app/.heroku
prefix. Attempts to bootstrap Kong on Heroku using existing Lua & apt buildpacks failed due to their compile-time prefixes of /usr/local
which is read-only in a dyno.
OpenSSL 1.0.2 (required by OpenResty) is also compiled from source.
This buildpack caches its compilation artifacts from the sources in vendor/
. Changes to the sources in vendor/
will be detected and the cache ignored.
If you need to trigger a full rebuild without changing the source, use the Heroku Repo CLI plugin to purge the cache:
heroku repo:purge_cache