Bug 34184: Add empty option for suggestion "document type"
[koha.git] / etc / koha-httpd.conf
1 # Koha Apache Configuration Directives
2
3 #NameVirtualHost *
4
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 "__PERL5LIB_DIRS__"
20
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
27
28    <Directory "__OPAC_WWW_DIR__">
29       Options -Indexes
30    </Directory>
31
32    # Secure internal stuff
33    <DirectoryMatch "__OPAC_WWW_DIR__/.*/(modules|xslt|includes)">
34       Require all denied
35    </DirectoryMatch>
36
37    <IfModule mod_gzip.c>
38      mod_gzip_on yes
39      mod_gzip_dechunk yes
40      mod_gzip_keep_workfiles No
41      mod_gzip_can_negotiate yes
42      mod_gzip_update_static No
43      mod_gzip_temp_dir /tmp
44      mod_gzip_minimum_file_size 512
45      mod_gzip_maximum_file_size 1000000
46      mod_gzip_maximum_inmem_size 1000000
47      mod_gzip_handle_methods GET POST
48      mod_gzip_item_exclude reqheader "User-Agent: .*Mozilla/4\..*\["
49      mod_gzip_item_exclude mime ^image/.*
50      mod_gzip_item_exclude rspheader Content-Type:image/*
51      mod_gzip_item_include file \.js$
52      mod_gzip_item_include mime ^application/javascript$
53      mod_gzip_item_include mime ^application/x-javascript$
54      mod_gzip_item_include file \.php$
55      mod_gzip_item_include mime ^text/html$
56      mod_gzip_item_include file \.css$
57      mod_gzip_item_include mime ^text/css$
58   </IfModule>
59
60   <IfModule mod_deflate.c>
61
62     # Compress content with type html, text, and css, ...
63     AddOutputFilterByType DEFLATE text/plain text/html text/xml text/css
64     AddOutputFilterByType DEFLATE application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript
65
66     DeflateCompressionLevel 9
67
68     # Properly handle old browsers that do not support compression
69     BrowserMatch ^Mozilla/4 gzip-only-text/html
70     BrowserMatch ^Mozilla/4\.0[678] no-gzip
71     BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
72
73     DeflateFilterNote Input instream
74     DeflateFilterNote Output outstream
75     DeflateFilterNote Ratio ratio
76
77     LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
78     <IfModule mod_headers.c>
79        #properly handle requests coming from behind proxies
80        Header append Vary User-Agent
81     </IfModule>
82   </IfModule>
83
84
85 #  Repeat this virtualhost stanza changing the following environment vars to
86 #  create multiple OPAC interfaces with custom css and/or search limits:
87 #  SetEnv OPAC_CSS_OVERRIDE mystyle.css
88 #  SetEnv OPAC_SEARCH_LIMIT branch:CODE
89 #  SetEnv OPAC_LIMIT_OVERRIDE 1
90
91    Options +FollowSymLinks
92
93    ErrorDocument 400 /cgi-bin/koha/errors/400.pl
94    ErrorDocument 401 /cgi-bin/koha/errors/401.pl
95    ErrorDocument 403 /cgi-bin/koha/errors/403.pl
96    ErrorDocument 404 /cgi-bin/koha/errors/404.pl
97    ErrorDocument 500 /cgi-bin/koha/errors/500.pl
98
99    <IfModule mod_rewrite.c>
100      # Rewrite Rules
101      RewriteEngine On
102
103      RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/opac-detail\.pl?bib=$1 [PT]
104      RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT]
105      RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
106      RewriteRule ^(.*)_[0-9]{2}\.[0-9]{7}\.(js|css)$ $1.$2 [L]
107
108      RewriteRule ^/cgi-bin/koha/erm/.*$ /cgi-bin/koha/erm/erm.pl [PT]
109
110      # REST API configuration
111      Alias "/api" "__API_CGI_DIR__"
112      <Directory __API_CGI_DIR__>
113        Options +ExecCGI +FollowSymlinks
114        AddHandler cgi-script .pl
115
116        SetEnv MOJO_MODE "production"
117
118        RewriteEngine On
119        RewriteBase /api/
120        RewriteCond %{REQUEST_URI} !^/api/v[0-1]+/app.pl
121        RewriteRule ^(v[0-9]+)/(.*)$ /api/$1/app.pl/api/$1/$2 [L]
122
123      </Directory>
124    </IfModule>
125
126    <IfModule mod_expires.c>
127       ExpiresActive on
128       ExpiresByType text/css "access plus 60 days"
129       ExpiresByType application/javascript "access plus 60 days"
130       ExpiresByType image/png "access plus 12 hours"
131       ExpiresByType image/gif "access plus 12 hours"
132    </IfModule>
133 </VirtualHost>
134
135 ## Intranet
136 <VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT_LIBRARIAN__>
137    ServerAdmin __WEBMASTER_EMAIL__
138    DocumentRoot __INTRANET_WWW_DIR__
139    ServerName __WEBSERVER_HOST__:__WEBSERVER_PORT_LIBRARIAN__
140 #  ServerAlias intranet.mydomain.com
141    ScriptAlias /cgi-bin/koha/ "__INTRANET_CGI_DIR__/"
142    ScriptAlias /index.html "__INTRANET_CGI_DIR__/mainpage.pl"
143    ScriptAlias /search "__INTRANET_CGI_DIR__/catalogue/search.pl"
144    Alias /plugin/ "__PLUGINS_DIR__/"
145    ErrorLog __LOG_DIR__/koha-error_log
146 #  TransferLog __LOG_DIR__/koha-access.log
147    SetEnv KOHA_CONF "__KOHA_CONF_DIR__/koha-conf.xml"
148    SetEnv PERL5LIB "__PERL5LIB_DIRS__"
149    Options +FollowSymLinks
150
151    # If you are overriding any system preferences,
152    # list them in this variable so the preference editor
153    # knows that they have been overridden.
154    # SetEnv OVERRIDE_SYSPREF_NAMES "Pref1,Pref2,Pref3"
155
156    ErrorDocument 400 /cgi-bin/koha/errors/400.pl
157    ErrorDocument 401 /cgi-bin/koha/errors/401.pl
158    ErrorDocument 403 /cgi-bin/koha/errors/403.pl
159    ErrorDocument 404 /cgi-bin/koha/errors/404.pl
160    ErrorDocument 500 /cgi-bin/koha/errors/500.pl
161
162    <Directory "__INTRANET_WWW_DIR__">
163       Options -Indexes
164    </Directory>
165
166    # Secure internal stuff
167    <DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)">
168       Require all denied
169       <FilesMatch "\.(json)$">
170         Require all granted
171       </FilesMatch>
172    </DirectoryMatch>
173
174    <IfModule mod_gzip.c>
175      mod_gzip_on yes
176      mod_gzip_dechunk yes
177      mod_gzip_keep_workfiles No
178      mod_gzip_can_negotiate yes
179      mod_gzip_update_static No
180      mod_gzip_temp_dir /tmp
181      mod_gzip_minimum_file_size 512
182      mod_gzip_maximum_file_size 1000000
183      mod_gzip_maximum_inmem_size 1000000
184      mod_gzip_handle_methods GET POST
185      mod_gzip_item_exclude reqheader "User-Agent: .*Mozilla/4\..*\["
186      mod_gzip_item_exclude mime ^image/.*
187      mod_gzip_item_exclude rspheader Content-Type:image/*
188      mod_gzip_item_include file \.js$
189      mod_gzip_item_include mime ^application/javascript$
190      mod_gzip_item_include mime ^application/x-javascript$
191      mod_gzip_item_include file \.php$
192      mod_gzip_item_include mime ^text/html$
193      mod_gzip_item_include file \.css$
194      mod_gzip_item_include mime ^text/css$
195    </IfModule>
196
197    <IfModule mod_deflate.c>
198
199      # Compress content with type html, text, and css, ...
200      AddOutputFilterByType DEFLATE text/plain text/html text/xml text/css
201      AddOutputFilterByType DEFLATE application/xml application/xhtml+xml application/rss+xml application/javascript application/x-javascript
202
203      DeflateCompressionLevel 9
204
205      # Properly handle old browsers that do not support compression
206      BrowserMatch ^Mozilla/4 gzip-only-text/html
207      BrowserMatch ^Mozilla/4\.0[678] no-gzip
208      BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
209
210      DeflateFilterNote Input instream
211      DeflateFilterNote Output outstream
212      DeflateFilterNote Ratio ratio
213
214      LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate
215      <IfModule mod_headers.c>
216        #properly handle requests coming from behind proxies
217        Header append Vary User-Agent
218      </IfModule>
219   </IfModule>
220
221    <IfModule mod_rewrite.c>
222      # Rewrite Rules
223      RewriteEngine On
224
225      RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/catalogue/detail.pl?biblionumber=$1 [PT]
226      RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT]
227      RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
228      RewriteRule ^(.*)_[0-9]{2}\.[0-9]{7}\.(js|css)$ $1.$2 [L]
229
230
231      # REST API configuration
232      Alias "/api" "__API_CGI_DIR__"
233      <Directory __API_CGI_DIR__>
234        Options +ExecCGI +FollowSymlinks
235        AddHandler cgi-script .pl
236
237        SetEnv MOJO_MODE "production"
238
239        RewriteEngine On
240        RewriteBase /api/
241        RewriteCond %{REQUEST_URI} !^/api/v[0-1]+/app.pl
242        RewriteRule ^(v[0-9]+)/(.*)$ /api/$1/app.pl/api/$1/$2 [L]
243      </Directory>
244    </IfModule>
245
246    <IfModule mod_expires.c>
247       ExpiresActive on
248       ExpiresByType text/css "access plus 60 days"
249       ExpiresByType application/javascript "access plus 60 days"
250       ExpiresByType image/png "access plus 12 hours"
251       ExpiresByType image/gif "access plus 12 hours"
252    </IfModule>
253 </VirtualHost>
254
255 # Uncomment this VirtualHost to enable API access through
256 # api.__WEBSERVER_HOST__:__WEBSERVER_PORT__
257 #<VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT__>
258 #  ServerAdmin __WEBMASTER_EMAIL__
259 #  DocumentRoot __INTRANET_CGI_DIR__/api
260 #  ServerName api.__WEBSERVER_HOST__:__WEBSERVER_PORT__
261 #  SetEnv KOHA_CONF "__KOHA_CONF_DIR__/koha-conf.xml"
262 #  SetEnv PERL5LIB "__PERL5LIB_DIRS__"
263 #  ErrorLog __LOG_DIR__/koha-api-error_log
264 #
265 #  <IfModule mod_rewrite.c>
266 #    <Directory __API_CGI_DIR__>
267 #      Options +ExecCGI +FollowSymlinks
268 #      AddHandler cgi-script .pl
269 #
270 #      SetEnv MOJO_MODE "production"
271 #
272 #      RewriteEngine on
273 #
274 #      RewriteRule ^api/(.*) $1 [L]
275 #
276 #      RewriteCond %{REQUEST_FILENAME} !-f
277 #      RewriteCond %{REQUEST_FILENAME} !-d
278 #      RewriteCond %{DOCUMENT_ROOT}/$1/app.pl -f
279 #      RewriteRule ^(.*?)/.* $1/app.pl/api/$0 [L]
280 #    </Directory>
281 #  </IfModule>
282 #</VirtualHost>