Merge branch 'caddy-documentation' into 'develop'

Added Caddy reverse proxy example

See merge request funkwhale/funkwhale!859
This commit is contained in:
Eliot Berriot 2019-08-22 10:44:44 +02:00
commit c5e68112b3
1 changed files with 16 additions and 0 deletions

View File

@ -275,6 +275,22 @@ installation guide.
Check the configuration is valid with ``apache2ctl configtest``, and once you're
done, load the new configuration with ``service apache2 restart``.
Caddy
^^^^^
If you're using Caddy as a reverse proxy in front of your docker containers (either mono or multi-container setup),
you can use the following configuration::
yourdomain.funkwhale {
proxy / 127.0.0.1:5000 {
transparent
websocket
header_upstream X-Forwarded-Host {host}:{server_port}
}
}
About internal locations
^^^^^^^^^^^^^^^^^^^^^^^^