-
Notifications
You must be signed in to change notification settings - Fork 450
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
a lot of logs throws 502 in nginx #10
Comments
I've having the same issue |
Titosemi, probably you need to upgrade chromephp on server and client. Im not sure in it but try to do it. |
If problem still exist after upgrading - just try to patch chromephp server-side library as I described above. |
Take a look at this bug report: symfony/symfony#8413 The response headers of php-fpm are too big for nginx to handle in the default config. |
Also compare with #12, an overall option to hard-limit data-size that this logging class should process sounds useful for many things. |
Error in nginx log:
2011/12/16 11:02:57 [error] 13912#0: *5 upstream sent too big header while reading response header from upstream,...
Client received HTTP/1.0 502 ...
fix:
@@ -602,6 +602,12 @@
*/
protected function _writeToFile($json)
{
if (!is_dir($this->getSetting(self::LOG_PATH))) {
mkdir($this->getSetting(self::LOG_PATH));
The text was updated successfully, but these errors were encountered: