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