mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-04-26 01:45:54 +03:00
Labels
No labels
awaiting feedback
bug
cannot reproduce
dns provider request
duplicate
enhancement
enhancement
enhancement
good first issue
help wanted
invalid
need more info
no certbot plugin available
product-support
pull-request
question
stale
troll
upstream issue
v2
v2
v2
v3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nginx-proxy-manager-NginxProxyManager#3131
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @WouterGritter on GitHub (Jan 14, 2026).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/5144
I assume I'm not the only one who uses their own
nginx.conf, a modified version of what's shipped with nginx-proxy-manager.aeb4424broke my instance due to referencing a log config file calledlog-proxy.confinstead oflog.confwhich my older nginx.conf still expected.I understand that this sometimes needs to be done. But renaming a file
log.conf->log-proxy.confseems unnecessary, and not done with the spirit of minimal change in mind.Though I may not be running a supported use case (shipping my own
nginx.conf), I think its not unreasonable to ask to keep scenarios like this in mind for future pull requests.@cnowacki commented on GitHub (Jan 14, 2026):
You are not the only one who uses their own nginx.conf. I ran into the same issue this morning.
@WouterGritter commented on GitHub (Jan 14, 2026):
Good to hear. For anyone else with the issue, the fix is to change the following line in your own
nginx.conf:include /etc/nginx/conf.d/include/log.confto
include /etc/nginx/conf.d/include/log-proxy.confI wonder if it might be beneficial to make a PR to rename this file back to
log.conf?@CyborgRider commented on GitHub (Jan 19, 2026):
@WouterGritter You're genuinely my hero. I have Proxmox running behind this and when this change happened, I couldn't get in to my admin portal to work on repairing this. Luckily I had a VPN from my phone to my local router, and I could access the admin portal to reload a backup.
After all that running around, I finally got the change made on my nginx.conf, then ran the script I made to shut down, pull, and restart the docker container... It only took me about 5 hours, at my office, but I finally got it up and running with the help of this comment:
To shorten my experience to one suggestion:
IF YOU'RE GOING TO MAKE A CHANGE THAT HAS THE POTENTIAL TO TAKE DOWN SEVERAL WEBSITES WITH ONE UPDATE, PLEASE LET US KNOW WHAT TO CHANGE IN THE UPDATE NOTES BEFORE PUSHING THIS TO EVERYONE!
I don't feel like anyone should have to be going through the github change notes just to figure that the name of a single file was changed, and broke the whole app from loading. I very much appreciate your time in doing so Wouter. You've saved my @
on this fine Monday. Glad I don't have automatic updates setup.