webhook.site icon indicating copy to clipboard operation
webhook.site copied to clipboard

can't setup webhook.site as multiple containers

Open bgalek opened this issue 2 years ago • 1 comments

Hi! Congratulations on successful project! I'm trying to run webhook.site on multiple containers (without docker compose).

nginx.conf has host of laravel-echo-server hardcoded, so I cannot put my IP there.

proxy_pass http://laravel-echo-server:6001;

Any chances of making it configurable?

bgalek avatar Oct 12 '23 20:10 bgalek

This is also an issue when attempting to run the 3 required containers on Azure ACI, workaround is running the following on container startup (not ideal..) commands = [ "/bin/sh", "-c", "sed -i 's|proxy_pass http://laravel-echo-server:6001;|proxy_pass http://localhost:6001;|' /etc/nginx/conf.d/nginx.conf && nginx && nginx -s reload" ]

sullivan1337 avatar Jan 01 '24 03:01 sullivan1337