-
-
Notifications
You must be signed in to change notification settings - Fork 329
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
update traefik to v2.x #396
base: main
Are you sure you want to change the base?
Conversation
|
||
#r set $registry_server "http://registry:5000"; | ||
#r proxy_pass $registry_server; | ||
proxy_pass http://registry:5000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you add the nginx configuration? It's not working with the bundled version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only the following configuration is added to ensure that the default 60s is not interrupted when transferring large images.
client_body_timeout 300;
proxy_read_timeout 300;
proxy_send_timeout 300;
keepalive_timeout 150;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this not necessary, or is it another issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is not necessary, I mean it adds more stuff to maintain if I'm updating the original nginx config for example and it makes the example more complex IMO
Hi, thank you for your contribution 😄 I posted one comment in your PR |
Updated traefik example #380
This is the version I'm using on production