documentation/docs/companion-caddy.md
Émilien (perso) 74e7a16c3b
chore: make companion officially supported in the installation guide (#663)
* chore: make companion officially supported in the installation guide

* doc: improve again

* docs: explain how to download binary for non docker user

* docs: inv-sig-helper => invidious companion
2025-09-14 00:12:16 +02:00

16 lines
399 B
Markdown

# Caddy reverse proxy setup with Invidious companion direct traffic
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> {
reverse_proxy /companion localhost:8282
reverse_proxy localhost:3000
log {
output discard
}
}
```