-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Honor VIRTUAL_PORT + DEBUG flag + fallback entry #1609
Conversation
@pini-gh after some thoughts, I think this PR in its current state might cause might issues than it solves. First I don't think we should break the previous "If only 1 port exposed, use that" behaviour. I agree on you that ideally that should have been the target behaviour from the start:
... but we don't know how many setup we might break by changing the first point because they relied implicitly on the previous behaviour, and I don't want to do something in the likes of moby/libnetwork#2607 that I criticised myself. Regarding nginx the I would also prefer not to loose the I'll think a bit more about it and come back to you with a suggestion we can discuss, if that's okay with you. |
And if completely misunderstood the way this PR works, please correct me. |
Well, I really can't see any use case for defining a |
I've been using this feature for several months with no problem so far. Do you think about a use case where it wouldn't be safe? |
Agreed. How about printing the network's name as well then?
|
@pini-gh I'll come back to this PR by the end of the week |
Looks good to me in this state and after clarification on The debug feature should also be tested, on the model of location per vhost test : def test_custom_block_is_present_in_nginx_generated_conf(docker_compose, nginxproxy):
assert b"include /etc/nginx/vhost.d/web1.nginx-proxy.local_location;" in nginxproxy.get_conf() Please tell me if you need help with this. |
Yes, please bear with me. I'm new to this ci/cd thing. Is there a way to run these tests on my box, so I could proceed by try / error iterations? |
The VIRTUAL_PORT environment variable should always be honored. Even when the related port is not exposed. Fix for nging-proxy/nginx-proxy#1132. This commit also add the DEBUG environment variable which enables more verbose comments in the nginx comfiguration file to help troubleshooting unreachable containers. Finaly it fixes nging-proxy/nginx-proxy#1105 as well by defining only one fallback entry per upstream block.
@buchdag I've added a test to check that the server is unreachable when VIRTUAL_PORT is defined different from the single exposed port. Is that what you have in mind? |
Yes, instructions for running tests localy are in In addition I'd suggest using a Python virtual environment (with something like |
Thanks, I think we're good with the
We need another test for the Something like this for instance
web:
image: web
expose:
- "80"
- "81"
environment:
WEB_PORTS: "80 81"
VIRTUAL_HOST: "web.nginx-proxy.tld"
VIRTUAL_PORT: "82"
DEBUG: "true"
sut:
image: nginxproxy/nginx-proxy:test
volumes:
- /var/run/docker.sock:/tmp/docker.sock:ro
- ../lib/ssl/dhparam.pem:/etc/nginx/dhparam/dhparam.pem:ro
import pytest
def test_debug_info_is_present_in_nginx_generated_conf(docker_compose, nginxproxy):
assert b"# Exposed ports: [{80 tcp} {81 tcp}]" in nginxproxy.get_conf()
assert b"# Default virtual port: 80" in nginxproxy.get_conf()
assert b"# VIRTUAL_PORT: 82" in nginxproxy.get_conf() We want to test that |
I've added two tests:
|
LGTM, thanks ! 👍 |
@pini-gh regarding the default inclusion of the
Well I found one: #1495 The fix proposed by @wlonkly in #1496 works and pass tests, but as stated in #1495 it would have the side effect of breaking load balancing behind the proxy. I know this isn't an advertised feature but looks like people are using it anyway (#1654). Do you think there would be an easy-ish way to output the |
It's not simple. Because the variables' scope is too limited with this template language. We need to be able to build a list from these nested loops:
Then it's easy. But we need this list first, and I have no brilliant idea right now :/ |
I thought about using global variables (which is possible in the go templating language), but I could not find specifically if setting a global variables inside a |
The only solution I can come up with is something along these lines:
|
The VIRTUAL_PORT environment variable should always be honored.
Even when the related port is not exposed.
Fix for #1132.
This commit also add the DEBUG environment variable which enables more
verbose comments in the nginx comfiguration file to help troubleshooting
unreachable containers.
Finaly it fixes #1105 as well by defining only one
fallback entry per upstream block.