Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/likesistemas/nginx-reverse
Simple reverse proxy using nginx
https://github.com/likesistemas/nginx-reverse
nginx-reverse-proxy
Last synced: 3 days ago
JSON representation
Simple reverse proxy using nginx
- Host: GitHub
- URL: https://github.com/likesistemas/nginx-reverse
- Owner: likesistemas
- Created: 2021-06-30T19:05:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-25T20:33:28.000Z (about 1 year ago)
- Last Synced: 2024-11-08T10:36:05.065Z (about 2 months ago)
- Topics: nginx-reverse-proxy
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [nginx-reverse] Simple reverse proxy using nginx
## How to use ?
Create the `docker-compose.yaml` file as in the example below and then use the `docker-compose up -d` command.
```yml
version: '3'
networks:
nginx-proxy:
name: nginx-proxy
driver: bridgeservices:
proxy:
image: likesistemas/nginx-reverse:latest
environment:
- BACKEND_SERVER=https://likesistemas.com.br
- VIRTUAL_HOST=tdta.com.br
- LETSENCRYPT_HOST=tdta.com.br
networks:
- nginx-proxy```