[GH-ISSUE #1428] Nginxproxymanager case sensitive #1113

Closed
opened 2026-02-26 06:35:48 +03:00 by kerem · 3 comments
Owner

Originally created by @mhamadtanki on GitHub (Sep 24, 2021).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1428

Checklist

  • Have you pulled and found the error with jc21/nginx-proxy-manager:latest docker image?
    • Yes
  • Are you sure you're not using someone else's docker image?
    • Yes
  • Have you searched for similar issues (both open and closed)?
    • Yes

Describe the bug
lets say i have a /about page If i go to MY_SERVER_IP:PORT/ABOUT i will be redirected to MY_SERVER_IP:PORT/about
but if i go to the same page but this time via my website MY_WEBSITE.COM/ABOUT i will get an error: Cannot GET /ABOUT
To Reproduce Steps to reproduce the behavior:

  1. I'm using a fully static HTML website with only two pages: / and /about . made with node express and HTML
Originally created by @mhamadtanki on GitHub (Sep 24, 2021). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1428 <!-- Are you in the right place? - If you are looking for support on how to get your upstream server forwarding, please consider asking the community on Reddit. - If you are writing code changes to contribute and need to ask about the internals of the software, Gitter is the best place to ask. - If you think you found a bug with NPM (not Nginx, or your upstream server or MySql) then you are in the *right place.* --> **Checklist** - Have you pulled and found the error with `jc21/nginx-proxy-manager:latest` docker image? - Yes - Are you sure you're not using someone else's docker image? - Yes - Have you searched for similar issues (both open and closed)? - Yes **Describe the bug** lets say i have a /about page If i go to MY_SERVER_IP:PORT/ABOUT i will be redirected to MY_SERVER_IP:PORT/about but if i go to the same page but this time via my website MY_WEBSITE.COM/ABOUT i will get an error: Cannot GET /ABOUT **To Reproduce** Steps to reproduce the behavior: 1. I'm using a fully static HTML website with only two pages: / and /about . made with node express and HTML
kerem 2026-02-26 06:35:48 +03:00
  • closed this issue
  • added the
    stale
    bug
    labels
Author
Owner

@Kegelcizer commented on GitHub (Dec 8, 2022):

🦗
Can this be resolved with a parameter for nginx or should the npm proxy_host template be updated?

location ~* /app1/(.*) {
    proxy_pass http://localhost:8080/$1$is_args$args;
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;
}
<!-- gh-comment-id:1342759991 --> @Kegelcizer commented on GitHub (Dec 8, 2022): 🦗 Can this be resolved with a parameter for nginx or should the npm proxy_host template be updated? ``` location ~* /app1/(.*) { proxy_pass http://localhost:8080/$1$is_args$args; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } ```
Author
Owner

@github-actions[bot] commented on GitHub (Mar 4, 2024):

Issue is now considered stale. If you want to keep it open, please comment 👍

<!-- gh-comment-id:1975516731 --> @github-actions[bot] commented on GitHub (Mar 4, 2024): Issue is now considered stale. If you want to keep it open, please comment :+1:
Author
Owner

@github-actions[bot] commented on GitHub (Apr 17, 2025):

Issue was closed due to inactivity.

<!-- gh-comment-id:2811545922 --> @github-actions[bot] commented on GitHub (Apr 17, 2025): Issue was closed due to inactivity.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#1113
No description provided.