https://github.com/buildo/docker-nginx-rdns
https://github.com/buildo/docker-nginx-rdns
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/buildo/docker-nginx-rdns
- Owner: buildo
- License: mit
- Created: 2017-07-04T13:09:44.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-19T19:07:37.000Z (over 5 years ago)
- Last Synced: 2025-01-21T03:41:37.280Z (over 1 year ago)
- Language: Nginx
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
}
```