Skip to content

Commit

Permalink
[dnsmasq] don't forward domainless queries
Browse files Browse the repository at this point in the history
improves performance as it does not send queries to upstream dns servers
that have invalid scope
  • Loading branch information
mikz committed Sep 12, 2017
1 parent d2568e0 commit b58bab8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- No limit on body size from the client sent to the server [PR #410](https://github.com/3scale/apicast/pull/410)
- Print module loading errors only when it failed to load [PR #415](https://github.com/3scale/apicast/pull/415)
- `bin/busted` rewritten to support different working directories [PR #418](https://github.com/3scale/apicast/pull/418)
- dnsmasq started in docker will not forward queries without domain [PR #421](https://github.com/3scale/apicast/pull/421)

## [3.1.0-beta2] - 2017-08-21

Expand Down
2 changes: 1 addition & 1 deletion apicast/.s2i/bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fi

dnsmasq --listen-address=127.0.0.1 --port=5353 \
--all-servers --no-host --no-hosts \
--cache-size=1000 --no-negcache \
--cache-size=1000 --no-negcache --domain-needed \
--server="${RESOLVER:-}" \
--log-facility=- ${DNSMASQ_OPTIONS:-} \

Expand Down

0 comments on commit b58bab8

Please sign in to comment.