-
Notifications
You must be signed in to change notification settings - Fork 826
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
NGINX + PHP-FPM net::ERR_INCOMPLETE_CHUNKED_ENCODING #2100
Comments
Check out my option |
@line117 I already checked your answer, here's what I did: TL:DR
I'd take a stake (blindly) and assume that the buffering issue it's due to disk access/filesystem related. I guess I can close this issue. |
After adding
Now, the |
I'm running into a slightly different issue: about 2/5 of the requests hangs, and will eventually load if I keep refreshing. Using
solved the problem. I also tried your suggesting with fastcgi_buffer_size, but it didn't help for me. At least in my environment, it seems that the bug is with this module. |
Operating System Information:
Windows Build Number: 10.0.15063 (15063.296)
Windows Version: Windows 10 Home Single Language x64
Version: 1703
Issue:
Running an NGINX instance with PHP-FPM enabled gives a timeout and an error on console
net::ERR_INCOMPLETE_CHUNKED_ENCODING
Steps to reproduce:
apt update && apt upgrade
)php7.0-fpm
socket and supportindex.php
fileindex
and create a new like following:index.php
Behavior:
After enabling both services (
service nginx start
andservice php7.0-fpm start
), entering address 127.0.0.1 or localhost renders the phpinfo() but keeps waiting for a request finish. Secods later, on console an error will appear that readsnet::ERR_INCOMPLETE_CHUNKED_ENCODING
Accesing the default
index.html
works alright, so I assume it all relies onphp-fpm
sideThe text was updated successfully, but these errors were encountered: