From 816f4178dc2852f47c0d5d81cd8c665d7e48c731 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Mon, 20 Dec 2021 20:46:41 +0100 Subject: Docker fix missing .htaccess (#4074) Related to https://github.com/FreshRSS/FreshRSS/issues/4073 In our Docker configuration, `.htaccess` files are included only once at startup. The one for themes was missing. --- p/.htaccess | 3 --- p/themes/.htaccess | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) (limited to 'p') diff --git a/p/.htaccess b/p/.htaccess index 909fb6cdc..55264a4f4 100644 --- a/p/.htaccess +++ b/p/.htaccess @@ -7,10 +7,7 @@ AddDefaultCharset UTF-8 AddType application/json .map - AddType application/font-woff .woff - AddType application/font-woff2 .woff2 - AddCharset UTF-8 .css AddCharset UTF-8 .html AddCharset UTF-8 .js diff --git a/p/themes/.htaccess b/p/themes/.htaccess index 706a7b88e..796c55ae0 100644 --- a/p/themes/.htaccess +++ b/p/themes/.htaccess @@ -1,5 +1,6 @@ AddType application/font-woff .woff + AddType application/font-woff2 .woff2 AddCharset UTF-8 .css AddCharset UTF-8 .svg -- cgit v1.2.3