Requirements
Your proxy must support long-lived WebSocket connections:- HTTP Upgrade headers
- bidirectional streaming
- long idle timeouts, ideally 24 hours
- TLS to the public Cyberdesk endpoint
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Route Cyberdriver traffic through a custom proxy
server {
listen 443 ssl;
server_name automation.yourcompany.com;
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/key.pem;
location / {
proxy_pass https://api.cyberdesk.io;
proxy_ssl_server_name on;
proxy_set_header Host api.cyberdesk.io;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_read_timeout 86400s;
proxy_send_timeout 86400s;
}
}
$Cyberdriver = (Get-Command Cyberdriver.exe -ErrorAction Stop).Source
& $Cyberdriver join --secret YOUR_API_KEY --api-base https://automation.yourcompany.com
Was this page helpful?