From a0ce3597be6874f5801a92749f48189a51d18568 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 11 Sep 2023 22:25:48 +0200 Subject: [PATCH] various fixes --- conf/nginx.conf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 7bf49a7..6603e55 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -16,6 +16,11 @@ location __PATH__/ { include conf.d/yunohost_panel.conf.inc; + # fix "[warn] could not build optimal proxy_headers_hash error" + proxy_headers_hash_max_size 512; + proxy_headers_hash_bucket_size 128; + + # media caching stuff # https://docs.gotosocial.org/en/latest/advanced/caching/assets-media/#nginx location /assets/ { @@ -26,7 +31,7 @@ location __PATH__/ { } location /fileserver/ { - alias __DATADIR__; + alias /home/yunohost.app/__APP__/; autoindex off; expires 1w; add_header Cache-Control "private, immutable";