mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-01 08:13:34 +00:00
47 lines
858 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|