[GH-ISSUE #2808] Request time out - Help needed #1930

Closed
opened 2026-02-26 07:33:18 +03:00 by kerem · 3 comments
Owner

Originally created by @Vegas10128 on GitHub (Apr 5, 2023).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/2808

Hello All,

I have a web script that requires users to upload content,
The webserver is behind nginx proxy manager (obviously)

Before I started using nginx proxy manager I was able to upload 100gb file if I wanted to.

Now I cannot because the proxy manager sends a "request timeout 30000"

I am looking to see if others have ran across the same issue, and how can I increase this limit.

I am also looking to see if someone could give me a working example from here.

FireShot Capture 039 - Nginx Proxy Manager - 192 168 1 103

Originally created by @Vegas10128 on GitHub (Apr 5, 2023). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/2808 Hello All, I have a web script that requires users to upload content, The webserver is behind nginx proxy manager (obviously) Before I started using nginx proxy manager I was able to upload 100gb file if I wanted to. Now I cannot because the proxy manager sends a "request timeout 30000" I am looking to see if others have ran across the same issue, and how can I increase this limit. I am also looking to see if someone could give me a working example from here. ![FireShot Capture 039 - Nginx Proxy Manager - 192 168 1 103](https://user-images.githubusercontent.com/12751381/230179067-a6dae64a-c15c-4315-a764-444c5bddd792.png)
kerem 2026-02-26 07:33:18 +03:00
  • closed this issue
  • added the
    stale
    bug
    labels
Author
Owner

@andzejsp commented on GitHub (Apr 7, 2023):

can you try this? https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/7928#issuecomment-1500028482

For me its kinda working for like waiting to render the image for like 15min and then receiving results, i guess it should work for your case too there is a flag to limit the filesize

location / {
        proxy_http_version 1.1;
auth_basic "Authorization required"; # Use this if you have access lists configured other wise the access lists will be bypassed
auth_basic_user_file /data/access/1; # Use this if you have access lists configured other wise the access lists will be bypassed
proxy_set_header Authorization ""; # Use this if you have access lists configured other wise the access lists will be bypassed
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade"; 
        proxy_pass http://192.168.0.205:7860/;
        proxy_buffering off;
        client_max_body_size 0;
        proxy_connect_timeout  6000s;
        proxy_read_timeout  6000s;
        proxy_send_timeout  6000s;
        send_timeout  6000s;
}
<!-- gh-comment-id:1500050728 --> @andzejsp commented on GitHub (Apr 7, 2023): can you try this? https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/7928#issuecomment-1500028482 For me its kinda working for like waiting to render the image for like 15min and then receiving results, i guess it should work for your case too there is a flag to limit the filesize ``` location / { proxy_http_version 1.1; auth_basic "Authorization required"; # Use this if you have access lists configured other wise the access lists will be bypassed auth_basic_user_file /data/access/1; # Use this if you have access lists configured other wise the access lists will be bypassed proxy_set_header Authorization ""; # Use this if you have access lists configured other wise the access lists will be bypassed proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_pass http://192.168.0.205:7860/; proxy_buffering off; client_max_body_size 0; proxy_connect_timeout 6000s; proxy_read_timeout 6000s; proxy_send_timeout 6000s; send_timeout 6000s; } ```
Author
Owner

@github-actions[bot] commented on GitHub (Jan 23, 2024):

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

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

@github-actions[bot] commented on GitHub (Mar 9, 2025):

Issue was closed due to inactivity.

<!-- gh-comment-id:2708617435 --> @github-actions[bot] commented on GitHub (Mar 9, 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#1930
No description provided.