diff options
| author | 2021-12-20 20:46:41 +0100 | |
|---|---|---|
| committer | 2021-12-20 20:46:41 +0100 | |
| commit | 816f4178dc2852f47c0d5d81cd8c665d7e48c731 (patch) | |
| tree | f8098f1acb3d07b73560d9af4c4c9d73dac0fb7e /Docker/FreshRSS.Apache.conf | |
| parent | 1ac3effce53e39d89272dfc95b0c68fcaa122dfb (diff) | |
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.
Diffstat (limited to 'Docker/FreshRSS.Apache.conf')
| -rw-r--r-- | Docker/FreshRSS.Apache.conf | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Docker/FreshRSS.Apache.conf b/Docker/FreshRSS.Apache.conf index 050ea4805..c7a0080ac 100644 --- a/Docker/FreshRSS.Apache.conf +++ b/Docker/FreshRSS.Apache.conf @@ -29,3 +29,7 @@ ServerTokens OS <Directory /var/www/FreshRSS/p/i> IncludeOptional /var/www/FreshRSS/p/i/.htaccess </Directory> + +<Directory /var/www/FreshRSS/p/themes> + Include /var/www/FreshRSS/p/themes/.htaccess +</Directory> |
