Skip to content

Create a proxy to your local network in one container!

Notifications You must be signed in to change notification settings

fandsdev/adhoc-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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