Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 687 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 687 Bytes

adhoc-proxy

A docker image to proxy outside requests to your local network

docker run -e TARGET=https://yandex.ru -p 3000:3000 ghcr.io/fandsdev/adhoc-proxy

Or via docker-compose

        services:
          adhoc-proxy:
            image: ghcr.io/fandsdev/adhoc-proxy
            environment:
              - TARGET=http://192.168.19.8:15672

SSL support

You can quickly use a self-signed certificate, by passing SELF_SIGNED_TLS environment variable.

        services:
          adhoc-proxy:
            image: ghcr.io/fandsdev/adhoc-proxy
            environment:
              - TARGET=http://192.168.19.8:15672
              - SELF_SIGNED_TLS=1