Sudip Bhattarai
Sudip Bhattarai
Yeh, that's a known issue. Nginx-proxy uses ip instead of dns, and it can see containers running on the same host only. Advantage of this is, nginx doesn't have to...
Indeed, may be I should make it possible to configure what to use with an Environment Variable
The location part needs to be repeated so that it gets mapped correctly. otherwise it's forwarded to / instead of /api/v4/websocket. There's another issue with mattermost websocket, It doesn't read...
I've been using registry:2 behind Nginx-proxy for 6months now. I never had any issues after setting `client_max_body_size=2g`. `blob upload unknown` looks like an issue with the registry. Can you try...
Can you try modifying `proxy_buffering off;` inside `http{ ...}` in `/etc/nginx/nginx.conf` file? There are other settings mentioned available in [Nginx documentation](https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_buffer_size) I don't know if it works, it's my random...
Hey @matti I have found two configuration changes that might solve the issue. ``` proxy_buffering off; proxy_request_buffering off; ``` Furthermore, have you checked the file `/var/log/nginx/error.log` in the container? It...
Here's a sample abstract contract ```java public class IERC20 extends Contract { private static final String BINARY = ""; public static final String FUNC_APPROVE = "approve"; public static final String...
Isn't this already dealt with in `docker-swarm`! Unhealthy containers are shutdown and a new one is spawned. If you are just using `docker` or `docker-compose` you can add a cron...
Basically you will have to build a `ScriptContext` object and then and pass it to the validator. On the most basic level you will have to set all the inputs,...
Ok, I will check with this 0.15.1 and tell you if the issue persists.