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

# Serving Atoti on a subpath

Atoti can be served on a subpath using a reverse proxy. To do so:

1. Set the `server.forward-headers-strategy` property to `FRAMEWORK`.
2. Configure the reverse proxy to add the `X-Forwarded-Prefix /path/to/atoti` header to requests it sends to Atoti.
   For security, note that the reverse proxy should also be configured to remove `X-Forwarded` headers from incoming requests.
   See the [Spring documentation](https://docs.spring.io/spring-framework/reference/web/webmvc/filters.html#filters-forwarded-headers-security) for more information.

Atoti can now be accessed at `http://<host>/path/to/atoti/`, where `<host>` depends on the reverse proxy configuration.
