Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/GUI/nginx-upstream-dynamic-servers
An nginx module to resolve domain names inside upstreams and keep them up to date.
https://github.com/GUI/nginx-upstream-dynamic-servers
Last synced: 16 days ago
JSON representation
An nginx module to resolve domain names inside upstreams and keep them up to date.
- Host: GitHub
- URL: https://github.com/GUI/nginx-upstream-dynamic-servers
- Owner: GUI
- License: mit
- Created: 2014-11-17T06:29:57.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-06-20T03:53:50.000Z (5 months ago)
- Last Synced: 2024-11-01T16:07:06.056Z (16 days ago)
- Language: C
- Size: 42 KB
- Stars: 313
- Watchers: 26
- Forks: 74
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# nginx-upstream-dynamic-servers
An nginx module to resolve domain names inside upstreams and keep them up to date.
By default, servers defined in nginx upstreams are only resolved when nginx starts. This module provides an additional `resolve` parameter for `server` definitions that can be used to asynchronously resolve upstream domain names. This keeps the upstream definition up to date according to the DNS TTL of each domain names. This can be useful if you want to use upstreams for dynamic types of domain names that may frequently change IP addresses.
This module also allows nginx to start if an upstream contains a defunct domain name that no longer resolves. By default, nginx will fail to start if an upstream server contains an unresolvable domain name. With this module, nginx is still allowed to start with invalid domain names, but an error will be logged and the unresolvable domain names will be marked as down.
## Installation
```sh
./configure --add-module=/path/to/nginx-upstream-dynamic-servers
make && make install
```## Usage
Use the `server` definition inside your upstreams and specify the `resolve` parameter.
*Note:* A `resolver` must be defined at the `http` level of nginx's config for `resolve` to work.
```
http {
resolver 8.8.8.8;upstream example {
server example.com resolve;
}
}
```## Directives
### server
**Syntax:** `server address [parameters];`
**Context** `upstream`Defines a server for an upstream. The module adds the ability to specify a `resolve` parameter. When specified:
- Domain names will be resolved on an ongoing basis and kept up to date according to the TTL of each domain name.
- Unresolvable domain names are considered non-fatal errors (but logged). nginx is allowed to startup if a domain name can't be resolved, but the server is marked as down.The following parameters can be used (see nginx's [server documentation](http://nginx.org/en/docs/http/ngx_http_upstream_module.html#server) for details):
`weight=number`
`max_fails=number`
`fail_timeout=time`
`backup`
`down`
`resolve`# Compatibility
Tested with nginx 1.6, 1.7, 1.8, 1.9.
## Alternatives
- [proxy_pass + resolver](http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass): If you only need to proxy to 1 domain and don't need the additional capabilities of upstreams, nginx's `proxy_pass` can perform resolving at run-time.
- [ngx_upstream_jdomain](http://wiki.nginx.org/HttpUpstreamJdomainModule): An nginx module that asyncronously resolves domain names. The primary differences between jdomain and this module is that this module keeps domain names up to date even if no server traffic is being generated (jdomain requires traffic to each upstream in order to keep it up to date). This module also allows nginx to startup if unresolvable domain names are given.
- [tengine's dynamic_resolve](https://github.com/alibaba/tengine/blob/master/docs/modules/ngx_http_upstream_dynamic.md): If you're using tengine (an nginx fork), there's a new feature (currently unreleased) to support resolving domain names in upstreams at run-time.
- [NGINX Plus](http://nginx.com/resources/admin-guide/load-balancer/#resolve)## License
nginx-upstream-dynamic-servers is open sourced under the [MIT license](https://github.com/GUI/nginx-upstream-dynamic-servers/blob/master/LICENSE.txt).