Skip to content

Commit cdde800

Browse files
authored
Merge pull request #373 from dobrician/patch-1
docs: fix for Nginx Proxy Manager buffering issue
2 parents 2984543 + 793759e commit cdde800

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,13 @@ FILESYSTEM_DISK=s3
115115

116116
As noted above, the AWS endpoint is `localstack` which is the container name that can be reached other containers within docker that are linked. However, if you are testing via the browser and try to download, you will be served with `http://localstack:4566` so one way to solve that is to edit your hosts file to point `localstack` to `127.0.0.1` the same way localhost is.
117117

118+
## ⚠️ Troubleshooting: Nginx Proxy Manager tip
119+
120+
If you're hosting the app behind **Nginx Proxy Manager** and pages are not fully loading or assets seem broken, try adding the following in the **Advanced > Custom Nginx Configuration** section of your proxy:
121+
122+
```nginx
123+
proxy_buffering on;
124+
proxy_buffers 16 16k;
125+
proxy_buffer_size 32k;
126+
```
118127

0 commit comments

Comments
 (0)