Files
nginx-proxy-manager/backend/schema/paths/nginx/certificates/test-http/post.json

47 lines
858 B
JSON

{
"operationId": "testHttpReach",
"summary": "Test HTTP Reachability",
"tags": ["certificates"],
"security": [
{
"bearerAuth": ["certificates.view"]
}
],
"requestBody": {
"description": "Test Payload",
"required": true,
"content": {
"application/json": {
"schema": {
"type": "object",
"additionalProperties": false,
"required": ["domains"],
"properties": {
"domains": {
"$ref": "../../../../common.json#/properties/domain_names"
}
}
}
}
}
},
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"examples": {
"default": {
"value": {
"test.example.org": "ok",
"test.example.com": "other:Invalid domain or IP",
"nonexistent.example.com": "404"
}
}
}
}
}
}
}
}