https://github.com/open-project-templates/docker-nginx-reverse-proxy
:whale: Docke with NGINX reverse proxy example
https://github.com/open-project-templates/docker-nginx-reverse-proxy
dns docker nginx proxy reverse services
Last synced: 2 months ago
JSON representation
:whale: Docke with NGINX reverse proxy example
- Host: GitHub
- URL: https://github.com/open-project-templates/docker-nginx-reverse-proxy
- Owner: alexandrelamberty
- Created: 2022-05-18T20:35:20.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-30T14:19:57.000Z (about 3 years ago)
- Last Synced: 2025-05-18T10:08:21.122Z (about 1 year ago)
- Topics: dns, docker, nginx, proxy, reverse, services
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker NGINX Reverse Proxy
Simple Docker and NGINX HTTP reverse proxy example deploying 3 docker service
## Link logical domain name to the IP address of the server
- localhost
- security.localhost
- weather.localhost
www.domain.com
security.domain.com
weather.domain.com
### Locally
```hosts
127.0.0.1 localhost
127.0.0.1 security.localhost
127.0.0.1 weather.localhost
```
### VPS
Add a `A` and `CNAME` to your dns manager
```txt
IN A 45.79.250.133
```
```txt
security IN A 0.0.0.0
```
```txt
weather IN A 0.0.0.0
```