exe.dev
Ziel: OpenClaw Gateway läuft auf einer exe.dev VM und ist von deinem Laptop aus erreichbar über: https://<vm-name>.exe.xyz
Diese Seite geht vom Standard-Image exeuntu von exe.dev aus. Wenn du eine andere Distribution gewählt hast, passe die Paketnamen entsprechend an.
Schnellstart für Einsteiger
- https://exe.new/openclaw
- Trage deinen Auth-Key/Token ein
- Klick auf “Agent” neben deiner VM und warte…
- ???
- Profit
Was du brauchst
- exe.dev Account
ssh exe.devZugriff auf exe.dev Virtual Machines (optional)
Automatische Installation mit Shelley
Shelley, der Agent von exe.dev, kann OpenClaw sofort mit unserem Prompt installieren. Der verwendete Prompt lautet:
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.
Manuelle Installation
1) VM erstellen
Von deinem Gerät aus:
ssh exe.dev new
Dann verbinden:
ssh <vm-name>.exe.xyz
Tipp: Halte diese VM stateful. OpenClaw speichert seinen Status unter ~/.openclaw/ und ~/.openclaw/workspace/.
2) Voraussetzungen installieren (auf der VM)
sudo apt-get update
sudo apt-get install -y git curl jq ca-certificates openssl
3) OpenClaw installieren
Führe das OpenClaw-Installationsskript aus:
curl -fsSL https://openclaw.ai/install.sh | bash
4) nginx als Proxy für OpenClaw auf Port 8000 einrichten
Bearbeite /etc/nginx/sites-enabled/default mit folgendem Inhalt:
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) Auf OpenClaw zugreifen und Berechtigungen erteilen
Öffne https://<vm-name>.exe.xyz/?token=YOUR-TOKEN-FROM-TERMINAL (siehe die Control UI Ausgabe vom Onboarding). Genehmige Geräte mit openclaw devices list und openclaw devices approve <requestId>. Im Zweifel nutze Shelley direkt aus deinem Browser!
Remote-Zugriff
Der Remote-Zugriff wird über die Authentifizierung von exe.dev gehandhabt. Standardmäßig wird HTTP-Traffic von Port 8000 auf https://<vm-name>.exe.xyz weitergeleitet, mit E-Mail-Authentifizierung.
Aktualisieren
npm i -g openclaw@latest
openclaw doctor
openclaw gateway restart
openclaw health
Anleitung: Aktualisieren