feat(nginx): Use builtin envsubst mechanics of nginx container

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2547>
This commit is contained in:
Georg Krause 2023-07-26 10:17:42 +02:00 committed by Marge
parent 346d4e9639
commit abf1306e2f
1 changed files with 8 additions and 0 deletions

View File

@ -81,6 +81,14 @@ server {
proxy_pass http://funkwhale-api/api/subsonic/rest/;
}
location /media/__sized__/ {
alias /protected/media/__sized__/;
}
location /media/attachments/ {
alias /protected/media/attachments/;
}
location /.well-known/ {
include /etc/nginx/funkwhale_proxy.conf;
proxy_pass http://funkwhale-api;