Skip to content
Jesse Jensen (EBSCO) edited this page Nov 16, 2020 · 3 revisions

Debian

sudo nano /etc/apache2/sites-available/library 
Add the following line between <VirtualHost /> just after all the include statements,
Alias /plugin/ "/var/lib/koha/instancename/plugins/"

Ubuntu

Add this stanza to the library's Apache config file (/etc/apache2/sites-enabled/library.conf), in the OPAC's <VirtualHost> section:

   Alias /plugin/ "/var/lib/koha/library/plugins/"
   <Location "/plugin/">
     Options ExecCGI
     AddHandler cgi-script .pl
     AllowOverride All
     Require all granted
   </Location>

Also see https://github.com/ebsco/edsapi-koha-plugin/issues/24

Clone this wiki locally