Browse Source

Bug 28236: Allow access to json files from apache config

This patch grants json files from koha-tmpl. Otherwise systempreferences won't be able to fetch them.

TEST PLAN:

1) Try to set systempreference BorrowerUnwantedField.
2) The modal is empty.
3) Modify Apache configurations like in this patch.
4) Try again set the systempreference.
5) The modal should show list of parameters.

Sponsored-by: Koha-Suomi Oy
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

JD Amended patch: replace tab characters and reword commit title

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.11.x
Johanna Raisa 3 years ago
committed by Jonathan Druart
parent
commit
35c279ac59
  1. 3
      etc/koha-httpd.conf

3
etc/koha-httpd.conf

@ -164,6 +164,9 @@
# Secure internal stuff # Secure internal stuff
<DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)"> <DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)">
Require all denied Require all denied
<FilesMatch "\.(json)$">
Require all granted
</FilesMatch>
</DirectoryMatch> </DirectoryMatch>
<IfModule mod_gzip.c> <IfModule mod_gzip.c>

Loading…
Cancel
Save