]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/templates/default/apache.erb
Update bundle
[chef.git] / cookbooks / otrs / templates / default / apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <VirtualHost *:80>
4   ServerName <%= @name %>
5 <% @aliases.each do |alias_name| -%>
6   ServerAlias <%= alias_name %>
7 <% end -%>
8   ServerAdmin webmaster@openstreetmap.org
9
10   CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
11   ErrorLog /var/log/apache2/<%= @name %>-error.log
12
13   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
14   RedirectPermanent / https://<%= @name %>/
15 </VirtualHost>
16 <% unless @aliases.empty? -%>
17
18 <VirtualHost *:443>
19   ServerName <%= @aliases.first %>
20 <% @aliases.drop(1).each do |alias_name| -%>
21   ServerAlias <%= alias_name %>
22 <% end -%>
23   ServerAdmin webmaster@openstreetmap.org
24
25   SSLEngine on
26   SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
27   SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
28
29   CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
30   ErrorLog /var/log/apache2/<%= @name %>-error.log
31
32   RedirectPermanent / https://<%= @name %>/
33 </VirtualHost>
34 <% end -%>
35
36 <VirtualHost *:443>
37   ServerName <%= @name %>
38   ServerAdmin webmaster@openstreetmap.org
39
40   CustomLog /var/log/apache2/<%= @name %>-access.log combined_extended
41   ErrorLog /var/log/apache2/<%= @name %>-error.log
42
43   SSLEngine on
44   SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
45   SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
46
47   Protocols http/1.1
48
49   ScriptAlias /otrs "/usr/share/otrs/bin/cgi-bin/"
50   Alias /otrs-web "/usr/share/otrs/var/httpd/htdocs/"
51   RedirectMatch ^/$ /otrs/index.pl
52
53   Perlrequire /usr/share/otrs/scripts/apache2-perl-startup.pl
54
55   PerlModule Apache2::Reload
56   PerlInitHandler Apache2::Reload
57
58   <Location /otrs>
59     ErrorDocument 403 /otrs/index.pl
60     ErrorDocument 404 /otrs/index.pl
61     SetHandler  perl-script
62     PerlResponseHandler ModPerl::Registry
63     Options +ExecCGI
64     PerlOptions +ParseHeaders
65     PerlOptions +SetupEnv
66     Require all granted
67   </Location>
68
69   <Location /otrs/nph-genericinterface.pl>
70     PerlOptions -ParseHeaders
71   </Location>
72 </VirtualHost>
73
74 <Directory "/usr/share/otrs/bin/cgi-bin/">
75     AllowOverride None
76     Options +ExecCGI -Includes
77     Require all granted
78 </Directory>
79
80 <Directory "/usr/share/otrs/var/httpd/htdocs/">
81   AllowOverride None
82   Require all granted
83
84   # Make sure CSS and JS files are read as UTF8 by the browsers.
85   AddCharset UTF-8 .css
86   AddCharset UTF-8 .js
87
88   # Set explicit mime type for woff fonts since it is relatively new and apache may not know about it.
89   AddType application/font-woff .woff
90 </Directory>
91
92 # Cache css-cache for 30 days
93 <Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css-cache">
94     <FilesMatch "\.(css|CSS)$">
95         Header set Cache-Control "max-age=2592000, must-revalidate"
96     </FilesMatch>
97 </Directory>
98
99 <Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css/thirdparty">
100     <FilesMatch "\.(css|CSS|woff|svg)$">
101         Header set Cache-Control "max-age=14400, must-revalidate"
102     </FilesMatch>
103 </Directory>
104
105 <Directory "/usr/share/otrs/var/httpd/htdocs/js/js-cache">
106     <FilesMatch "\.(js|JS)$">
107         Header set Cache-Control "max-age=2592000, must-revalidate"
108     </FilesMatch>
109 </Directory>
110
111 <Directory "/usr/share/otrs/var/httpd/htdocs/js/thirdparty/">
112     <FilesMatch "\.(js|JS)$">
113         Header set Cache-Control "max-age=14400, must-revalidate"
114     </FilesMatch>
115 </Directory>