Questions tagged [http-status-code-408]

10 questions
46
votes
8 answers

Getting 408 errors on our logs with no request or user agent

I'm getting a lot of requests turning up in our apache logs that look like this www.example.com:80 10.240.1.8 - - [06/Mar/2013:00:39:19 +0000] "-" 408 0 "-" "-" - There seems to be no request and no user agent. Has anyone seen this before?
Glenn Slaven
  • 2,330
  • 2
  • 29
  • 41
6
votes
0 answers

Nginx returning 408 error with XHR2 file uploads during mid-upload

A customer of mine is trying to upload a file to our remote nginx webserver via a form POST using XHR2 form data (and a cross-domain request with CORS). During mid-upload, the webserver returns a 408 and the ajax error handler halts processing as a…
danronmoon
  • 163
  • 1
  • 6
1
vote
1 answer

NGINX: Request Limit timeout behavior for queries in the queue (burst)

Currently, we have a queue size of 3000 requests. location /api/v2 { limit_req zone=bursted burst=3000; include /etc/nginx/proxy.conf; } The rate limit is 10 requests per second. limit_req_zone $limit zone=api_slow:10m rate=1r/s; …
1
vote
0 answers

ELB, Nginx and redirecting http to https - 408 requests timeout

I have this configuration: The Amazon Elastic Load Balancer (ELB) routes port 80 to port 81 and port 443 to port 80 The cert is handled in ELB Nginx listens to port 80 and 81 Port 81 redirects to https Port 80 is the main server The nginx…
ic3b3rg
  • 111
  • 4
1
vote
2 answers

random Nginx 408 errors during ajax post

I'm using jQuery to post some form data to my Nginx server but sometimes it fails with a 408 error. When the error happens, apparently the php script to process the posted data is NOT reached at all, as I put some logging function in the first line.…
klemperer
  • 11
  • 1
1
vote
0 answers

Apache custom error pages for 400 and 408

I have created a number of custom error pages and I have this in global configuration so it will apply to all vhosts: Alias /common /var/www/common ErrorDocument 400 /common/400.shtml ErrorDocument 401 /common/401.shtml ErrorDocument 403…
1
vote
1 answer

Subversion SSL handshake failed and 408 error code

Versions Subversion: version 1.6.11 (r934486) Operating System: CentOS release 6.8 (Final) Background I have a variety of shell scripts that run as cronjobs on a CentOS machine. The shell scripts commit files to and checkout files from Subversion. …
Chris Maggiulli
  • 155
  • 1
  • 1
  • 6
1
vote
1 answer

How to increase Apache's timeout correctly when mod_proxy is used

Background: I have machine to machine communication system, where client is sending every now and then data to Apache Server. Communication is slow as mobile 2G is used for communication. Apache uses mod_wsgi (for Django). Because client doesn't…
Tumbelo
  • 13
  • 1
  • 3
0
votes
0 answers

Diagnosing nginx 408

Users upload photos to my site, using an HTML5 plupload runtime that submits the files to a php script at /upload-process. Normally this works fine, but sometimes the call to /upload-process times out. The very first line of code in /upload-process…
Codemonkey
  • 1,034
  • 2
  • 17
  • 36
0
votes
1 answer

Why is a user getting a "proxy server isn't responding" message and causing HTTP 408 errors to be logged?

I have a user who can't get to my web site hosted on AWS EC2. This user is behind a corporate proxy server, and when they enter my URL, they get a "The proxy server isn't responding" message in IE and my apache logs show HTTP 408 results from their…