windows10BashOnWindowsERR_INCOMPLETE_CHUNKED_ENCODING
為了bash on Windows 而裝了windows 10 。但在配置LNMP環境的時候出現了問題。
狀況
靜態網頁載入沒有問題
但是訪問php卻會出現keeps waiting for a request finish最終遊覽器報net::ERR_INCOMPLETE_CHUNKED_ENCODING錯誤的情況。
更改了一堆引數無效,最後還是在官方的github上找到解決方法。
解決
nginx.conf
http {
...
fastcgi_buffering off;
...
}
重啟nginx與php-fpm即可解決。
參考
https://github.com/Microsoft/BashOnWindows/issues/1851#issuecomment-294299975