fix(nginx): Do not cache all requests for a day in the reverse proxy

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2673>
This commit is contained in:
Georg Krause 2023-12-08 13:46:32 +00:00 committed by Marge
parent b00daa189d
commit da01070455
3 changed files with 3 additions and 1 deletions

View File

@ -0,0 +1 @@
Do not cache all requests to avoid missing updates #2258

View File

@ -78,7 +78,6 @@ server {
# end of compression settings
location / {
expires 1d;
include /etc/nginx/funkwhale_proxy.conf;
proxy_pass http://fw;
}

View File

@ -159,7 +159,9 @@ server {
{% endif %}
location / {
{% if not config.reverse_proxy %}
expires 1d;
{% endif %}
include /etc/nginx/funkwhale_proxy.conf;
{% if config.proxy_frontend and not config.reverse_proxy %}
proxy_pass http://funkwhale-front;