> For the complete documentation index, see [llms.txt](https://docs.organizr.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.organizr.app/help/faq/auth-cookie-is-not-used-by-other-subdomains.md).

# Auth cookie is not used by other subdomains

## Caddy

This is caused by Caddy not adding the necessary headers when forwarding the login request to Organizr.

Using the "transparent" preset or manually adding the necessary headers solves the issue.

For Example:

```
organizr.example.com {
  proxy / http://organizr.internal {
    transparent
  }
}
```

See more: [Here](https://caddyserver.com/docs/proxy)
