mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-04-25 01:15:51 +03:00
[GH-ISSUE #5175] Allow nginx parameters *after* proxy.conf include #3135
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#3135
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 @ben-efros on GitHub (Jan 15, 2026).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/5175
Is your feature request related to a problem? Please describe.
In a proxy scenario, occasionally we need to rewrite HTTP headers explicitly. For example I may host "mySite.proxy.company.com" and I want it to forward to an internal site "mySite-internal.company.com" . The server at "mySite-internal.company.com" does not respond/allow the CN of "mysite.proxy.company.com" and so it needs to be manually changed.
adding a line like this to the site conf file after the
include /etc/nginx/conf.d/include/proxy.conf;line would allow or this:proxy_set_header Host myHostName.myDomain;Currently the
Custom Nginx Configurationdialog only allows for custom configurations before the include of proxy.conf. Please add support for site-specific includes after proxy.conf as well.Great job on this project by the way!!!