-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1569 from Mashape/fix/conf-parsing
fix(conf) overcome penlight's 'list_delim' setting
- Loading branch information
Showing
3 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
database = cassandra # strip me | ||
log_level = debug # strip this | ||
# comment too | ||
dnsmasq = off # Toggles if Kong should start/stop dnsmasq, | ||
# which can be used as the Nginx DNS resolver. | ||
# Using dnsmasq allows Nginx to resolve | ||
# domains defined in /etc/hosts. | ||
# dnsmasq must be installed and available in | ||
# your $PATH. | ||
dns_resolver = 8.8.8.8 | ||
|
||
custom_plugins = foobar,hello-world # Comma-separated list of additional plugins | ||
# this node should load. | ||
# Use this property to load custom plugins | ||
# that are not bundled with Kong. | ||
# Plugins will be loaded from the | ||
# `kong.plugins.{name}.*` namespace. |