Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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: bridge

services:

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

```