]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/templates/default/apache.erb
4018c36a187510795edee0f326f943ec4130f30d
[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
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://otrs.openstreetmap.org/
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
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
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/ /opt/otrs/bin/cgi-bin/
48   Alias /otrs-web/ /opt/otrs/var/httpd/htdocs/
49   RedirectMatch ^/$ /otrs/index.pl
50
51   PerlRequire /opt/otrs/scripts/apache2-perl-startup.pl
52
53   PerlModule Apache2::Reload
54   PerlInitHandler Apache2::Reload
55   PerlModule Apache2::RequestRec
56
57   <Location /otrs>
58     ErrorDocument 403 /otrs/index.pl
59     ErrorDocument 404 /otrs/index.pl
60     SetHandler  perl-script
61     PerlResponseHandler ModPerl::Registry
62     Options +ExecCGI
63     PerlOptions +ParseHeaders
64     PerlOptions +SetupEnv
65     Require all granted
66   </Location>
67
68   <Location /otrs/nph-genericinterface.pl>
69     PerlOptions -ParseHeaders
70   </Location>
71 </VirtualHost>
72
73   <Directory /opt/otrs/bin/cgi-bin>
74     AllowOverride None
75     Options +ExecCGI -Includes
76     Require all granted
77   </Directory>
78
79   <Directory /opt/otrs/var/httpd/htdocs>
80     AllowOverride None
81     Require all granted
82   </Directory>
83
84   <Directory /opt/otrs/var/httpd/htdocs/skins/*/*/css-cache>
85     <FilesMatch "\.(css|CSS)$">
86       Header set Cache-Control "max-age=2592000 must-revalidate"
87     </FilesMatch>
88   </Directory>
89
90   <Directory /opt/otrs/var/httpd/htdocs/js/js-cache>
91     <FilesMatch "\.(js|JS)$">
92       Header set Cache-Control "max-age=2592000 must-revalidate"
93     </FilesMatch>
94 </Directory>