├── .gitignore ├── AUTHOR ├── LICENSE ├── README.md ├── config └── ngx_http_rdns_module.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.swp 3 | -------------------------------------------------------------------------------- /AUTHOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/nginx-http-rdns/HEAD/AUTHOR -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/nginx-http-rdns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/nginx-http-rdns/HEAD/README.md -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/nginx-http-rdns/HEAD/config -------------------------------------------------------------------------------- /ngx_http_rdns_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flant/nginx-http-rdns/HEAD/ngx_http_rdns_module.c --------------------------------------------------------------------------------