fix(nginx): fix websocket issue in template

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2648>
This commit is contained in:
Ciarán Ainsworth 2023-11-26 19:33:13 +01:00 committed by Marge
commit 76362b020e
6 changed files with 7 additions and 1 deletions

View file

@ -81,6 +81,7 @@ server {
location / {
expires 1d;
include /etc/nginx/funkwhale_proxy.conf;
proxy_pass http://fw;
}

View file

@ -95,6 +95,7 @@ server {
location / {
expires 1d;
include /etc/nginx/funkwhale_proxy.conf;
alias ${FUNKWHALE_FRONTEND_PATH}/;
try_files $uri $uri/ /index.html;
}