If you're using Firefox (only firefox has edit and resend), navigate to your tunnel public hostname

If you're using Firefox (only firefox has edit and resend), navigate to your tunnel public hostname page, open up dev tools (ctrl+shift+i).
Add a new public hostname and save, and then find the PUT request to configurations (screenshot below)
Right click -> Edit and Resend
Copy the Audit Log Event, and strip the extra information below the config block, specifically the created_at, source, tunnel_id, and version tools, and the trailing comma. Your end result should be like this:
{
  "config": {
    "ingress": [
      {
        "hostname": "meili.chaika.me",
        "service": "http://127.0.0.1"
      },
      {
        "hostname": "1.chaika.me",
        "originRequest": {},
        "path": "1",
        "service": "http://127.0.0.1:8080"
      },
      {
        "service": "http_status:404"
      }
    ],
    "warp-routing": {
      "enabled": false
    }
  }
}

Replace the body with that
Click send, and look at the response. Make sure it's successful
image.png
Was this page helpful?