502 Error on "General" page when using nginx proxy manager
maxandcheeses opened this issue · 4 comments
maxandcheeses commented
Describe the bug
There is a 502 error when attempting to navigate to 'General' settings tab when going through a reverse proxy. In this case- I am using Nginx Proxy Manager.
To Reproduce
Steps to reproduce the behavior:
- Setup reverse proxy that points to XZG device
- Navigate to {xzg-device}.{your-domain}.com settings
- Go to 'General' tab
Expected behavior
Page should load like all the other tabs
Desktop (please complete the following information):
- OS: macOS
- Browser Chrome
- 125.0.6422.77
Additional context
All other tabs in the settings page loads just fine
xyzroe commented
I see 502 error on your screenshot
maxandcheeses commented
*corrected the mistake
xyzroe commented
I think the problem is caused by the header response with timezones names. It's large, about 8Kb. Check your nginx proxy settings for max headers size or so on.
maxandcheeses commented
You are spot on. I increase the size to address the issue.
proxy_buffers 4 32k;
proxy_buffer_size 32k;
Thanks for help!