documentation/docs/companion-caddy.md
Fijxu f6bdf68e5e
add mising /download endpoint from companion on the webserver configurations
Required for download to work on invidious due to commit: 8fd0b82c38
2025-05-08 12:22:35 -04:00

23 lines
498 B
Markdown

# Caddy reverse proxy setup with Invidious companion
This is a very basic config, assuming that you're using Caddy to manage SSL certificates for you.
Any log is disabled by default. Do not forget to replace `server_name` with your domain.
```
https://<server_name> {
@companion {
path /latest_version
path /api/manifest/dash/id/*
path /videoplayback*
path /download*
}
reverse_proxy @companion localhost:8282
reverse_proxy localhost:3000
log {
output discard
}
}
```