You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently nginx-proxy puts its configuration into a file named default.conf which is included via include /etc/nginx/conf.d/*.conf; directive. The nginx configuration is order dependent, thus if users rely on anything in default.conf being ordered before or after their config file, they must choose the name for the config file accordingly. Currently the name must be something that comes either before or after default.conf in alphabetical order. This is confusing.
A simple fix for this would be to rename the generated config file from default.conf to have some number prepended, such as 50-default.conf.
Please let me know if this issue is something for which a PR would be accepted. I would then go prepare one.
The text was updated successfully, but these errors were encountered:
Currently nginx-proxy puts its configuration into a file named default.conf which is included via
include /etc/nginx/conf.d/*.conf;
directive. The nginx configuration is order dependent, thus if users rely on anything in default.conf being ordered before or after their config file, they must choose the name for the config file accordingly. Currently the name must be something that comes either before or afterdefault.conf
in alphabetical order. This is confusing.A simple fix for this would be to rename the generated config file from default.conf to have some number prepended, such as 50-default.conf.
Please let me know if this issue is something for which a PR would be accepted. I would then go prepare one.
The text was updated successfully, but these errors were encountered: