Skip to content

add hint for 0bytes fix (SetEnv proxy-sendcl 1) #166

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions source/dav/0bytes.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,26 @@ seems to consistently be that either:

See [Webservers](/dav/webservers) for more information.

**Update/possible fix:**
A user reported that Apache mitigated this problem. Apache2+FPM/fcgi is said to be working using the flag `SetEnv proxy-sendcl 1`.
According to the bug filed [here](https://bz.apache.org/bugzilla/show_bug.cgi?id=57087) this was introduced in Apache 2.4.46.

Example entry:

```
<VirtualHost *:80>
...
SetEnv proxy-sendcl 1
...
<FilesMatch "\.php$">
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>
...
</VirtualHost>
```

We have not yet tested this fix.


Clients submitting files in two phases
--------------------------------------
Expand Down
Loading