Skip to content

Commit

Permalink
Merge pull request #268 from 3scale/echo-api-default
Browse files Browse the repository at this point in the history
[echo] listen as a default server
  • Loading branch information
jmprusi authored Feb 21, 2017
2 parents 014f447 + 0b80e2c commit b933f97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- `RESOLVER` ENV variable overrides all other nameservers detected from `/etc/resolv.conf` [PR #260](https://github.com/3scale/apicast/pull/260)
- Use stale DNS cache when there is a query in progress for that record [PR #260](https://github.com/3scale/apicast/pull/260)
- Bump s2i-openresty to 1.11.2.2-2 [PR #260](https://github.com/3scale/apicast/pull/260)
- Echo API on port 8081 listens accepts any Host [PR #268](https://github.com/3scale/apicast/pull/268)

### Added

Expand Down
4 changes: 2 additions & 2 deletions apicast/conf/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ http {
}
server {
listen 8081;
listen 8081 default_server;
server_name echo;
server_name echo _;
include ../conf.d/echo.conf;
}
Expand Down

0 comments on commit b933f97

Please sign in to comment.