mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-05-01 11:32:28 +00:00
Closes #1114 Related To #1882 Related To #3537 Related To #3618 Co-authored-by: jwklijnsma <janwiebe@janwiebe.eu> Co-authored-by: SBado <16034687+SBado@users.noreply.github.com>
58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"operationId": "getStreams",
|
|
"summary": "Get all streams",
|
|
"tags": ["Streams"],
|
|
"security": [
|
|
{
|
|
"BearerAuth": ["streams"]
|
|
}
|
|
],
|
|
"parameters": [
|
|
{
|
|
"in": "query",
|
|
"name": "expand",
|
|
"description": "Expansions",
|
|
"schema": {
|
|
"type": "string",
|
|
"enum": ["access_list", "owner", "certificate"]
|
|
}
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "200 response",
|
|
"content": {
|
|
"application/json": {
|
|
"examples": {
|
|
"default": {
|
|
"value": [
|
|
{
|
|
"id": 1,
|
|
"created_on": "2024-10-09T02:33:45.000Z",
|
|
"modified_on": "2024-10-09T02:33:45.000Z",
|
|
"owner_user_id": 1,
|
|
"incoming_port": 9090,
|
|
"forwarding_host": "router.internal",
|
|
"forwarding_port": 80,
|
|
"tcp_forwarding": true,
|
|
"udp_forwarding": false,
|
|
"proxy_protocol_enabled": false,
|
|
"loadbalancer_address": "",
|
|
"meta": {
|
|
"nginx_online": true,
|
|
"nginx_err": null
|
|
},
|
|
"enabled": true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"schema": {
|
|
"$ref": "../../../components/stream-list.json"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|