-
Notifications
You must be signed in to change notification settings - Fork 26
Apache Setup
Jesse Jensen (EBSCO) edited this page Nov 16, 2020
·
3 revisions
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/"
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