Skip to content

likesistemas/nginx-reverse

Repository files navigation

[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.

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

Releases

No releases published