Bug 5371: Force no caching for private pages at the OPAC
[koha.git] / debian / templates / apache-shared-intranet-plack.conf
1 # Apache configuration settings that are shared for every Koha instance.
2 # This file contains settings for the Plack configuration of the intranet.
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 intranet.
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/intranet"
18         ProxyPassReverse /cgi-bin/koha "unix:/var/run/koha/${instance}/plack.sock|http://localhost/intranet"
19
20         # Point the /api endpoint to Plack
21        # ProxyPass /api "unix:/var/run/koha/${instance}/plack.sock|http://localhost/api"
22        # ProxyPassReverse /api "unix:/var/run/koha/${instance}/plack.sock|http://localhost/api"
23
24     </IfModule>
25 </IfVersion>