> For the complete documentation index, see [llms.txt](https://dronebridge.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dronebridge.gitbook.io/docs/dronebridge-for-esp32-drone-light-show-edition/developers-dlse-api-definition/static.md).

# Static

Serve static web-app files from the ESP32 filesystem

## Serve static web-app files

> Wildcard handler that maps any GET request to a file on the ESP32's VFS filesystem (SPIFFS/LittleFS). Requests to \`/\` are redirected to \`/index.html\`. Supported MIME types: \`text/html\`, \`application/javascript\`, \`text/css\`, \`image/png\`, \`image/x-icon\`, \`text/xml\` (SVG).<br>

```json
{"openapi":"3.0.3","info":{"title":"DroneBridge ESP32 REST API","version":"1.0.0"},"tags":[{"name":"Static","description":"Serve static web-app files from the ESP32 filesystem"}],"servers":[{"url":"http://192.168.2.1","description":"Default ESP32 AP address"}],"paths":{"/{path}":{"get":{"tags":["Static"],"summary":"Serve static web-app files","description":"Wildcard handler that maps any GET request to a file on the ESP32's VFS filesystem (SPIFFS/LittleFS). Requests to `/` are redirected to `/index.html`. Supported MIME types: `text/html`, `application/javascript`, `text/css`, `image/png`, `image/x-icon`, `text/xml` (SVG).\n","operationId":"getStaticFile","parameters":[{"name":"path","in":"path","required":true,"schema":{"type":"string"},"description":"Relative path to the static file, e.g. `index.html`, `app.js`, `style.css`. A bare `/` serves `index.html`.\n"}],"responses":{"200":{"description":"File contents with appropriate Content-Type header","content":{"text/html":{"schema":{"type":"string"}},"application/javascript":{"schema":{"type":"string"}},"text/css":{"schema":{"type":"string"}},"image/png":{"schema":{"type":"string","format":"binary"}},"image/x-icon":{"schema":{"type":"string","format":"binary"}},"text/xml":{"schema":{"type":"string"}}}},"500":{"description":"File not found or read error on the VFS"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://dronebridge.gitbook.io/docs/dronebridge-for-esp32-drone-light-show-edition/developers-dlse-api-definition/static.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
