An open API service indexing awesome lists of open source software.

https://github.com/buildo/docker-nginx-rdns


https://github.com/buildo/docker-nginx-rdns

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# docker-nginx-rdns

Nginx + [https rdns](https://github.com/flant/nginx-http-rdns) module

## usage

`docker pull quay.io/buildo/nginx-rdns`

## example conf file
```
server {
listen 80;
rdns double;

location / {
rdns_allow google.* # accepts only connections from google domains
}
}
```