Bug 17084 - Automatic debian/control updates (master)
[koha.git] / debian / templates / apache-shared-opac-plack.conf
1 # Apache configuration settings that are shared for every Koha instance.
2 # This file contains settings for the Plack configuration of the OPAC.
3 #
4 # This file should be included from an instance's
5 # /etc/apache2/site-available file, from within the VirtualHost section
6 # for the OPAC.
7
8 # Plack is only available out-of-the-box for Apache 2.4.7+ setups
9 <IfVersion >= 2.4.8>
10     <IfModule mod_proxy_http.c>
11
12         ProxyPreserveHost On
13
14        # RequestHeader set X-FORWARDED-PROTO "https"
15
16         # Point the intranet site to Plack
17         ProxyPass /cgi-bin/koha "unix:/var/run/koha/${instance}/plack.sock|http://localhost/opac"
18         ProxyPassReverse /cgi-bin/koha "unix:/var/run/koha/${instance}/plack.sock|http://localhost/opac"
19
20         # Point the /api endpoint to Plack
21         RewriteCond %{REQUEST_URI} !^/api/v[0-1]+/app.pl
22         RewriteRule ^/api/(v[0-9]+)/(.*)$ /api/$1/app.pl/api/$1/$2 [L,PT]
23
24         ProxyPass /api "unix:/var/run/koha/${instance}/plack.sock|http://localhost/api"
25         ProxyPassReverse /api "unix:/var/run/koha/${instance}/plack.sock|http://localhost/api"
26
27     </IfModule>
28 </IfVersion>