Forum Moderators: phranque
500 Internal Server Error - nasty response that is usually caused by a problem in your Perl code when a CGI program is run.
501 The request cannot be carried out by the server.
502 Bad Gateway - the server you're trying to reach is sending back errors.
503 Temporarily Unavailable - the service or file that is being requested is not currently available.
504 The gateway has timed out. Like the 408 timeout error, but this one occurs at the gateway of the server.
505 The HTTP protocol you are asking for is not supported.
ExampleIt was you, wasn't it, that posted elsewhere about selective host lookups? Here's one more postprocessing routine you could run, if so.
LogLevel alert rewrite:trace3
...
Those familiar with earlier versions of mod_rewrite will no doubt be looking for the RewriteLog and RewriteLogLevel directives. This functionality has been completely replaced by the new per-module logging configuration mentioned above.
To get just the mod_rewrite-specific log messages, pipe the log file through grep:
tail -f error_log|fgrep '[rewrite:'
LogLevel [module:]level [module:level] ... mod_access if you are also using Allow? There’s a mod_access_compat, but that’s just to ease the transition from old-style Allow/Deny to new-style Require/Satisfy.
I don't think OP's site uses mod_rewrite for access control
Logging the setenv/rewrite rejection reason
if your access controls are based on one module (mod_authz_host) using values set by a different module (mod_setenvif), which of the two is more useful to log in detail?
The second evil_robot line is puzzling since it should only trigger that onceThere's probably some other setenvif directive that you put in for testing and never got around to removing, so two different aspects of the UA string both trigger the setting.
wouldn't it be great if apache documentation for each moduleWasn’t that a Beach Boys song?
But it looks as if only one module alert can be set at a time; if more, last one wins.Well, phooey. But that's what experimentation is for. Er, this isn't a live site that has to stay in limbo until everything is sorted, is it?