Ansible-status-code-module

Created 4 years ago
Maintained by r4j0x00
Gets the status code of a given url
Members 1
rajvardhan agarwal committed 4 years ago

Ansible-status-code-module

Ansible module that gets the status code of a given url

Http status codes

Http status codes are 3 digit numbers which are returned when a request is made to a webserver. The first digit of this number gives us information about the respose.
This list shows what each of the digits signify -
* 1xx - Informational
* 2xx - Success
* 3xx - Redirection
* 4xx - Client Error
* 5xx - Server Error

The second and third digits give us more information about the response. For example status code 404 represents a not found error and a 403 status code represents a forbidden error. This link can be referred for more information about all the status codes.