> ## Documentation Index
> Fetch the complete documentation index at: https://openclaw.veiseule.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# exe.dev

# exe.dev

लक्ष्य: exe.dev VM पर चल रहा OpenClaw Gateway, जो आपके लैपटॉप से निम्न माध्यम से पहुँचा जा सके: `https://<vm-name>.exe.xyz`

This page assumes exe.dev's default **exeuntu** image. If you picked a different distro, map packages accordingly.

## शुरुआती त्वरित मार्ग

1. [https://exe.new/openclaw](https://exe.new/openclaw)
2. आवश्यकता अनुसार अपनी auth key/token भरें
3. अपने VM के पास “Agent” पर क्लिक करें, और प्रतीक्षा करें...
4. ???
5. लाभ

## आपको क्या चाहिए

* exe.dev खाता
* [exe.dev](https://exe.dev) वर्चुअल मशीनों तक `ssh exe.dev` पहुँच (वैकल्पिक)

## Shelley के साथ स्वचालित इंस्टॉल

Shelley, [exe.dev](https://exe.dev)'s agent, can install OpenClaw instantly with our
prompt. The prompt used is as below:

```
Set up OpenClaw (https://docs.openclaw.ai/install) on this VM. Use the non-interactive and accept-risk flags for openclaw onboarding. Add the supplied auth or token as needed. Configure nginx to forward from the default port 18789 to the root location on the default enabled site config, making sure to enable Websocket support. Pairing is done by "openclaw devices list" and "openclaw device approve <request id>". Make sure the dashboard shows that OpenClaw's health is OK. exe.dev handles forwarding from port 8000 to port 80/443 and HTTPS for us, so the final "reachable" should be <vm-name>.exe.xyz, without port specification.
```

## मैनुअल इंस्टॉलेशन

## 1. VM बनाएँ

अपने डिवाइस से:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
ssh exe.dev new
```

फिर कनेक्ट करें:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
ssh <vm-name>.exe.xyz
```

Tip: keep this VM **stateful**. OpenClaw stores state under `~/.openclaw/` and `~/.openclaw/workspace/`.

## 2. पूर्वापेक्षाएँ इंस्टॉल करें (VM पर)

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
sudo apt-get update
sudo apt-get install -y git curl jq ca-certificates openssl
```

## 3. OpenClaw इंस्टॉल करें

OpenClaw इंस्टॉल स्क्रिप्ट चलाएँ:

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
curl -fsSL https://openclaw.ai/install.sh | bash
```

## 4. OpenClaw को पोर्ट 8000 पर प्रॉक्सी करने के लिए nginx सेटअप करें

`/etc/nginx/sites-enabled/default` को निम्न के साथ संपादित करें:

```
server {
    listen 80 default_server;
    listen [::]:80 default_server;
    listen 8000;
    listen [::]:8000;

    server_name _;

    location / {
        proxy_pass http://127.0.0.1:18789;
        proxy_http_version 1.1;

        # WebSocket support
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        # Standard proxy headers
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        # Timeout settings for long-lived connections
        proxy_read_timeout 86400s;
        proxy_send_timeout 86400s;
    }
}
```

## 5. OpenClaw तक पहुँचें और विशेषाधिकार प्रदान करें

Access `https://<vm-name>.exe.xyz/` (see the Control UI output from onboarding). If it prompts for auth, paste the
token from `gateway.auth.token` on the VM (retrieve with `openclaw config get gateway.auth.token`, or generate one
with `openclaw doctor --generate-gateway-token`). 1. `openclaw devices list` के साथ डिवाइस अनुमोदित करें और
`openclaw devices approve <requestId>`। 2. यदि संदेह हो, तो अपने ब्राउज़र से Shelley का उपयोग करें!

## दूरस्थ पहुँच

3. रिमोट एक्सेस [exe.dev](https://exe.dev) के प्रमाणीकरण द्वारा संभाला जाता है। 4. डिफ़ॉल्ट रूप से, पोर्ट 8000 से HTTP ट्रैफ़िक को ईमेल ऑथ के साथ `https://<vm-name>.exe.xyz` पर फ़ॉरवर्ड किया जाता है।

## अपडेटिंग

```bash theme={"theme":{"light":"min-light","dark":"min-dark"}}
npm i -g openclaw@latest
openclaw doctor
openclaw gateway restart
openclaw health
```

गाइड: [Updating](/install/updating)
