What's the recommended way to get my session on Clawdbot running in Hetzner

I'd like to automate via the browser, where I need my session to be present, but since I'm running in a Hetzner server, I wonder what the recommended method is in this case.
Solution
For a Hetzner server (headless environment), you want headless browser mode. Here's what's supported:

Option 1: Native headless mode (recommended)
Set this in your config:
{
  browser: { headless: true },
  agents: {
    defaults: {
      sandbox: { browser: { headless: true } }
    }
  }
}


This uses Chrome's built-in headless mode - no display server needed, works out of the box.
Was this page helpful?