docker-nginx-loadbalancer icon indicating copy to clipboard operation
docker-nginx-loadbalancer copied to clipboard

Nginx Load Balancer for Docker. It reads links to containers which expose and generates a suitable Nginx config file at startup.

Results 8 docker-nginx-loadbalancer issues
Sort by recently updated
recently updated
newest added
trafficstars

Recommended options from nginx guide on supporting websocket calls

Allows for https connection to upstream. Optional param Note: pull request looks bigger as it's based off my websocket branch. Please accept that pull request first, then this will be...

What entry do I need to add to change the proxy_pass to to be https:// rather than http:// for when the backend is using https?

Hi, I need to have sticky sessions and was hoping to use the following. upstream tomcat { server lca2:8080; server lca3:8080; server lca1:8080; sticky learn create=$upstream_cookie_JSESSIONID lookup=$cookie_JSESSIONID zone=client_sessions:1m; } However...

What are the minimum required environment variables? I have: ``` API_1_PORT_80_TCP_ADDR=159.203.49.28 API_2_PORT_80_TCP_ADDR=159.203.49.127 API_3_PORT_80_TCP_ADDR=159.203.49.237 API_PATH=/ ``` I run and get back: ``` $ docker run --env-file env.list 9cf9e42e26b3 No fig prefix...

Hi, Is there currently a way to set custom headers for each application configured for the proxy?

Hi, Thanks for creating this image! I tried using this with `docker-compose` with the following settings, but had a few issues using HTTPS, but they were easily fixed. Let me...

Hi! I'm using your image to test a few things. In README.md you mention your proxy.conf should look a lot bigger than what I see. I have the following: ```upstream...