]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/templates/default/apache.erb
otrs: move to naga
[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   ScriptAlias /otrs "/usr/share/otrs/bin/cgi-bin/"
48   Alias /otrs-web "/usr/share/otrs/var/httpd/htdocs/"
49   RedirectMatch ^/$ /otrs/index.pl
50
51   Perlrequire /usr/share/otrs/scripts/apache2-perl-startup.pl
52
53   PerlModule Apache2::Reload
54   PerlInitHandler Apache2::Reload
55
56   <Location /otrs>
57     ErrorDocument 403 /otrs/index.pl
58     ErrorDocument 404 /otrs/index.pl
59     SetHandler  perl-script
60     PerlResponseHandler ModPerl::Registry
61     Options +ExecCGI
62     PerlOptions +ParseHeaders
63     PerlOptions +SetupEnv
64     Require all granted
65   </Location>
66
67   <Location /otrs/nph-genericinterface.pl>
68     PerlOptions -ParseHeaders
69   </Location>
70 </VirtualHost>
71
72 <Directory "/usr/share/otrs/bin/cgi-bin/">
73     AllowOverride None
74     Options +ExecCGI -Includes
75     Require all granted
76 </Directory>
77
78 <Directory "/usr/share/otrs/var/httpd/htdocs/">
79   AllowOverride None
80   Require all granted
81
82   # Make sure CSS and JS files are read as UTF8 by the browsers.
83   AddCharset UTF-8 .css
84   AddCharset UTF-8 .js
85
86   # Set explicit mime type for woff fonts since it is relatively new and apache may not know about it.
87   AddType application/font-woff .woff
88 </Directory>
89
90 # Cache css-cache for 30 days
91 <Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css-cache">
92     <FilesMatch "\.(css|CSS)$">
93         Header set Cache-Control "max-age=2592000, must-revalidate"
94     </FilesMatch>
95 </Directory>
96
97 <Directory "/usr/share/otrs/var/httpd/htdocs/skins/*/*/css/thirdparty">
98     <FilesMatch "\.(css|CSS|woff|svg)$">
99         Header set Cache-Control "max-age=14400, must-revalidate"
100     </FilesMatch>
101 </Directory>
102
103 <Directory "/usr/share/otrs/var/httpd/htdocs/js/js-cache">
104     <FilesMatch "\.(js|JS)$">
105         Header set Cache-Control "max-age=2592000, must-revalidate"
106     </FilesMatch>
107 </Directory>
108
109 <Directory "/usr/share/otrs/var/httpd/htdocs/js/thirdparty/">
110     <FilesMatch "\.(js|JS)$">
111         Header set Cache-Control "max-age=14400, must-revalidate"
112     </FilesMatch>
113 </Directory>