Bug 19385: Fix random t/Calendar.t failure - clear the cache before
[koha.git] / etc / koha-httpd.conf
blobc3b55a41b6189bd7ba9d05b8065df739b3a5121d
1 # Koha Apache Configuration Directives
3 #NameVirtualHost *
5 ## OPAC
6 <VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT__>
7    ServerAdmin  __WEBMASTER_EMAIL__
8    DocumentRoot __OPAC_WWW_DIR__
9    ServerName __WEBSERVER_HOST__
10 #  ServerAlias opac.mydomain.com
11    ScriptAlias /cgi-bin/koha/ "__OPAC_CGI_DIR__/opac/"
12    ScriptAlias /index.html "__OPAC_CGI_DIR__/opac/opac-main.pl"
13    ScriptAlias /opac-search.pl "__OPAC_CGI_DIR__/opac/opac-search.pl"
14    ScriptAlias /search "__OPAC_CGI_DIR__/opac/opac-search.pl"
15    ErrorLog __LOG_DIR__/koha-opac-error_log
16 #  CustomLog __LOG_DIR__/koha-opac-access.log combined
17 #  TransferLog __LOG_DIR__/koha-opac-access.log
18    SetEnv KOHA_CONF "__KOHA_CONF_DIR__/koha-conf.xml"
19    SetEnv PERL5LIB "__PERL_MODULE_DIR__"
21    # This syntax allows you to override a system preference
22    # for a given virtual host. Use with caution!
23    # You should add all the system preferences you override
24    # in one or more vhosts to the environment variable
25    # OVERRIDE_SYSPREF_NAMES for your staff intranet vhost
26    # SetEnv OVERRIDE_SYSPREF_PrefName Value
28    <Directory "__OPAC_WWW_DIR__">
29       Options -Indexes
30    </Directory>
32    # Secure internal stuff
33    <DirectoryMatch "__OPAC_WWW_DIR__/.*/(modules|xslt|includes)">
34       Order deny,allow
35       Deny from all
36    </DirectoryMatch>
38    <IfModule mod_gzip.c>
39      mod_gzip_on yes
40      mod_gzip_dechunk yes
41      mod_gzip_keep_workfiles No
42      mod_gzip_can_negotiate yes
43      mod_gzip_update_static No
44      mod_gzip_temp_dir /tmp
45      mod_gzip_minimum_file_size 512
46      mod_gzip_maximum_file_size 1000000
47      mod_gzip_maximum_inmem_size 1000000
48      mod_gzip_handle_methods GET POST
49      mod_gzip_item_exclude reqheader "User-Agent: .*Mozilla/4\..*\["
50      mod_gzip_item_exclude mime ^image/.*
51      mod_gzip_item_exclude rspheader Content-Type:image/*
52      mod_gzip_item_include file \.js$
53      mod_gzip_item_include mime ^application/javascript$
54      mod_gzip_item_include mime ^application/x-javascript$
55      mod_gzip_item_include file \.php$
56      mod_gzip_item_include mime ^text/html$
57      mod_gzip_item_include file \.css$
58      mod_gzip_item_include mime ^text/css$
59   </IfModule>
61   <IfModule mod_deflate.c>
63     # Compress content with type html, text, and css, ...
64     AddOutputFilterByType DEFLATE text/plain text/html text/xml text/css
65     AddOutputFilterByType DEFLATE application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript
67     DeflateCompressionLevel 9
69     # Properly handle old browsers that do not support compression
70     BrowserMatch ^Mozilla/4 gzip-only-text/html
71     BrowserMatch ^Mozilla/4\.0[678] no-gzip
72     BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
74     DeflateFilterNote Input instream
75     DeflateFilterNote Output outstream
76     DeflateFilterNote Ratio ratio
78     LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
79     <IfModule mod_headers.c>
80        #properly handle requests coming from behind proxies
81        Header append Vary User-Agent
82     </IfModule>
83   </IfModule>
86 #  Repeat this virtualhost stanza changing the following environment vars to
87 #  create multiple OPAC interfaces with custom css and/or search limits:
88 #  SetEnv OPAC_CSS_OVERRIDE mystyle.css
89 #  SetEnv OPAC_SEARCH_LIMIT branch:CODE
90 #  SetEnv OPAC_LIMIT_OVERRIDE 1
92    Options +FollowSymLinks
94    ErrorDocument 400 /cgi-bin/koha/errors/400.pl
95    ErrorDocument 401 /cgi-bin/koha/errors/401.pl
96    ErrorDocument 403 /cgi-bin/koha/errors/403.pl
97    ErrorDocument 404 /cgi-bin/koha/errors/404.pl
98    ErrorDocument 500 /cgi-bin/koha/errors/500.pl
100    <IfModule mod_rewrite.c>
101      # Rewrite Rules
102      RewriteEngine On
104      # Uncomment to turn on rewrite logging
105      #RewriteLog __LOG_DIR__/koha-opac-rewrite.log
106      #RewriteLogLevel 1
108      #The following two directives are unnecessary to proper Koha functioning.
109      #RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&(.*)
110      #RewriteRule (.+) $1?%1%2 [N,R,NE]
111      RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/opac-detail\.pl?bib=$1 [PT]
112      RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT]
113      RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
115      # REST API configuration
116      Alias "/api" "__API_CGI_DIR__"
117      <Directory __API_CGI_DIR__>
118        Options +ExecCGI +FollowSymlinks
119        AddHandler cgi-script .pl
121        SetEnv MOJO_MODE "production"
123        RewriteEngine On
124        RewriteBase /api/
125        RewriteCond %{REQUEST_FILENAME} !-f
126        RewriteCond %{REQUEST_FILENAME} !-d
127        RewriteCond %{DOCUMENT_ROOT}/../api/$1/app.pl -f
128        RewriteRule ^(.*?)/.* $1/app.pl/api/$0 [L]
129      </Directory>
130    </IfModule>
131 </VirtualHost>
133 ## Intranet
134 <VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT_LIBRARIAN__>
135    ServerAdmin __WEBMASTER_EMAIL__
136    DocumentRoot __INTRANET_WWW_DIR__
137    ServerName __WEBSERVER_HOST__:__WEBSERVER_PORT_LIBRARIAN__
138 #  ServerAlias intranet.mydomain.com
139    ScriptAlias /cgi-bin/koha/ "__INTRANET_CGI_DIR__/"
140    ScriptAlias /index.html "__INTRANET_CGI_DIR__/mainpage.pl"
141    ScriptAlias /search "__INTRANET_CGI_DIR__/catalogue/search.pl"
142    Alias /plugin/ "__PLUGINS_DIR__/"
143    ErrorLog __LOG_DIR__/koha-error_log
144 #  TransferLog __LOG_DIR__/koha-access.log
145    SetEnv KOHA_CONF "__KOHA_CONF_DIR__/koha-conf.xml"
146    SetEnv PERL5LIB "__PERL_MODULE_DIR__"
147    Options +FollowSymLinks
149    # If you are overriding any system preferences,
150    # list them in this variable so the preference editor
151    # knows that they have been overridden.
152    # SetEnv OVERRIDE_SYSPREF_NAMES "Pref1,Pref2,Pref3"
154    ErrorDocument 400 /cgi-bin/koha/errors/400.pl
155    ErrorDocument 401 /cgi-bin/koha/errors/401.pl
156    ErrorDocument 403 /cgi-bin/koha/errors/403.pl
157    ErrorDocument 404 /cgi-bin/koha/errors/404.pl
158    ErrorDocument 500 /cgi-bin/koha/errors/500.pl
160    <Directory "__INTRANET_WWW_DIR__">
161       Options -Indexes
162    </Directory>
164    # Secure internal stuff
165    <DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)">
166       Order deny,allow
167       Deny from all
168    </DirectoryMatch>
170    <IfModule mod_gzip.c>
171      mod_gzip_on yes
172      mod_gzip_dechunk yes
173      mod_gzip_keep_workfiles No
174      mod_gzip_can_negotiate yes
175      mod_gzip_update_static No
176      mod_gzip_temp_dir /tmp
177      mod_gzip_minimum_file_size 512
178      mod_gzip_maximum_file_size 1000000
179      mod_gzip_maximum_inmem_size 1000000
180      mod_gzip_handle_methods GET POST
181      mod_gzip_item_exclude reqheader "User-Agent: .*Mozilla/4\..*\["
182      mod_gzip_item_exclude mime ^image/.*
183      mod_gzip_item_exclude rspheader Content-Type:image/*
184      mod_gzip_item_include file \.js$
185      mod_gzip_item_include mime ^application/javascript$
186      mod_gzip_item_include mime ^application/x-javascript$
187      mod_gzip_item_include file \.php$
188      mod_gzip_item_include mime ^text/html$
189      mod_gzip_item_include file \.css$
190      mod_gzip_item_include mime ^text/css$
191    </IfModule>
193    <IfModule mod_deflate.c>
195      # Compress content with type html, text, and css, ...
196      AddOutputFilterByType DEFLATE text/plain text/html text/xml text/css
197      AddOutputFilterByType DEFLATE application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript
199      DeflateCompressionLevel 9
201      # Properly handle old browsers that do not support compression
202      BrowserMatch ^Mozilla/4 gzip-only-text/html
203      BrowserMatch ^Mozilla/4\.0[678] no-gzip
204      BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
206      DeflateFilterNote Input instream
207      DeflateFilterNote Output outstream
208      DeflateFilterNote Ratio ratio
210      LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
211      <IfModule mod_headers.c>
212        #properly handle requests coming from behind proxies
213        Header append Vary User-Agent
214      </IfModule>
215   </IfModule>
217    <IfModule mod_rewrite.c>
218      # Rewrite Rules
219      RewriteEngine On
221      # Uncomment to turn on rewrite logging
222      #RewriteLog __LOG_DIR__/koha-intranet-rewrite.log
223      #RewriteLogLevel 1
225      #The following two directives are unnecessary to proper Koha functioning.
226      #RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&(.*)
227      #RewriteRule (.+) $1?%1%2 [N,R,NE]
228      RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/detail\.pl?bib=$1 [PT]
229      RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT]
230      RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
233      # REST API configuration
234      Alias "/api" "__API_CGI_DIR__"
235      <Directory __API_CGI_DIR__>
236        Options +ExecCGI +FollowSymlinks
237        AddHandler cgi-script .pl
239        SetEnv MOJO_MODE "production"
241        RewriteEngine On
242        RewriteBase /api/
243        RewriteCond %{REQUEST_FILENAME} !-f
244        RewriteCond %{REQUEST_FILENAME} !-d
245        RewriteCond %{DOCUMENT_ROOT}/../api/$1/app.pl -f
246        RewriteRule ^(.*?)/.* $1/app.pl/api/$0 [L]
247      </Directory>
248    </IfModule>
249 </VirtualHost>
251 # Uncomment this VirtualHost to enable API access through
252 # api.__WEBSERVER_HOST__:__WEBSERVER_PORT__
253 #<VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT__>
254 #  ServerAdmin __WEBMASTER_EMAIL__
255 #  DocumentRoot __INTRANET_CGI_DIR__/api
256 #  ServerName api.__WEBSERVER_HOST__:__WEBSERVER_PORT__
257 #  SetEnv KOHA_CONF "__KOHA_CONF_DIR__/koha-conf.xml"
258 #  SetEnv PERL5LIB "__PERL_MODULE_DIR__"
259 #  ErrorLog __LOG_DIR__/koha-api-error_log
261 #  <IfModule mod_rewrite.c>
262 #    <Directory __API_CGI_DIR__>
263 #      Options +ExecCGI +FollowSymlinks
264 #      AddHandler cgi-script .pl
266 #      SetEnv MOJO_MODE "production"
268 #      RewriteEngine on
270 #      RewriteRule ^api/(.*) $1 [L]
272 #      RewriteCond %{REQUEST_FILENAME} !-f
273 #      RewriteCond %{REQUEST_FILENAME} !-d
274 #      RewriteCond %{DOCUMENT_ROOT}/$1/app.pl -f
275 #      RewriteRule ^(.*?)/.* $1/app.pl/api/$0 [L]
276 #    </Directory>
277 #  </IfModule>
278 #</VirtualHost>