Are you a squid proxy administrator ? , worried about the access.log details , here you can find reference :
The status field contains the HTTP result status of the request, as follows:
The status field contains the HTTP result status of the request, as follows:
200
- Successful operation.201
- File created/modified successfully.304
- The requested file has not changed.400
- Bad HTTP request; typically this means that you have a malicious program trying to access your server.401
- Unauthorized, authentication (username + password) is required.403
- Access is forbidden; typically this means that a client tried to access a file or resource they do not have permission to access.404
- The file or resource does not exist.405
- URL access method is not allowed; typically this means you have a web browser using your server as a proxy.413
- Request too large; typically this means that a client tried to print a file larger than theMaxRequestSize
allows.426
- Upgrading to TLS-encrypted connection.500
- Server error; typically this happens when the server is unable to open/create a file - consult the error_log file for details.501
- The client requested encryption but encryption support is not enabled/compiled in.505
- HTTP version number not supported; typically this means that you have a malicious program trying to access your server.
Comments
Post a Comment