<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># AWSTATS HTTP STATUS DATABASE
#-------------------------------------------------------
# If you want to add a HTTP status code, you must add
# an entry in httpcodelib.
#-------------------------------------------------------
# $Revision: 1.3 $ - $Author: eldy $ - $Date: 2009/06/03 19:05:31 $


#package AWSHTTPCODES;


# httpcodelib
# This list is used to found description of a HTTP status code
#-----------------------------------------------------------------
%httpcodelib = (
#[Miscellaneous successes]
'2xx'=&gt;'[Miscellaneous successes]',
'200'=&gt;'OK',								# HTTP request OK
'201'=&gt;'Created',
'202'=&gt;'Request recorded, will be executed later',
'203'=&gt;'Non-authoritative information',
'204'=&gt;'Request executed',
'205'=&gt;'Reset document',
'206'=&gt;'Partial Content',
#[Miscellaneous redirections]
'3xx'=&gt;'[Miscellaneous redirections]',
'300'=&gt;'Multiple documents available',
'301'=&gt;'Moved permanently (redirect)',
'302'=&gt;'Moved temporarily (redirect)',
'303'=&gt;'See other document',
'304'=&gt;'Not Modified since last retrieval',	# HTTP request OK
'305'=&gt;'Use proxy',
'306'=&gt;'Switch proxy',
'307'=&gt;'Moved temporarily',
#[Miscellaneous client/user errors]
'4xx'=&gt;'[Miscellaneous client/user errors]',
'400'=&gt;'Bad Request',
'401'=&gt;'Unauthorized',
'402'=&gt;'Payment required',
'403'=&gt;'Forbidden',
'404'=&gt;'Document Not Found (hits on favicon excluded)',
'405'=&gt;'Method not allowed',
'406'=&gt;'Document not acceptable to client',
'407'=&gt;'Proxy authentication required',
'408'=&gt;'Request Timeout',
'409'=&gt;'Request conflicts with state of resource',
'410'=&gt;'Document gone permanently',
'411'=&gt;'Length required',
'412'=&gt;'Precondition failed',
'413'=&gt;'Request too long',
'414'=&gt;'Requested filename too long',
'415'=&gt;'Unsupported media type',
'416'=&gt;'Requested range not valid',
'417'=&gt;'Failed',
#[Miscellaneous server errors]
'5xx'=&gt;'[Miscellaneous server errors]',
'500'=&gt;'Internal server Error',
'501'=&gt;'Not implemented',
'502'=&gt;'Received bad response from real server',
'503'=&gt;'Server busy',
'504'=&gt;'Gateway timeout',
'505'=&gt;'HTTP version not supported',
'506'=&gt;'Redirection failed',
#[Unknown]
'xxx'=&gt;'[Unknown]'
);


1;
</pre></body></html>