Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 562 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 562 Bytes

[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